ScrollView嵌套webview因焦点问题导致自动滑动

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_36707431/article/details/81477650

因聚焦问题导致,只需要再ScrollView得子控件添加一行属性:android:descendantFocusability = "blocksDescendants"

     <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:descendantFocusability="blocksDescendants"
            android:orientation="vertical">

API描述如下:android:descendantFocusability

Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus.

Must be one of the following constant values.

该属性是当一个为view获取焦点时,定义viewGroup和其子控件两者之间的关系。

属性的值有三种:

        beforeDescendants:viewgroup会优先其子类控件而获取到焦点

        afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点

        blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

参考资料:

https://stackoverflow.com/questions/9842494/how-to-prevent-a-scrollview-from-scrolling-to-a-webview-after-data-is-loaded

http://www.cnblogs.com/eyu8874521/archive/2012/10/17/2727882.html

猜你喜欢

转载自blog.csdn.net/qq_36707431/article/details/81477650