android scrollview fragment viewpager 切换 状态 变化 scrollview 滚动到最上方

来源:互联网 发布:cmd 导出oracle数据库 编辑:程序博客网 时间:2024/06/05 22:51
如题,这个问题:当切换fragment的时候,在切换回来,如果本页面有类似viewpager的控件,会自动的被隐藏了,自动滑动了最上方 。

解决:
http://stackoverflow.com/questions/16182331/scrollview-inside-viewpager-scrolls-to-middle-automatically

记得
android:focusable=trueandroid:focusableInTouchMode=trueandroid:descendantFocusability=beforeDescendants
给ScrollView的第一个跟布局设置。。。

android:focusableInTouchMode:就是可以通过touch来获得focus

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会覆盖子类控件而直接获得焦点

0 0