您的位置:首页 > 其它

切换fragment回来的时候如果有类似viewpager的控件,会自动的被隐藏了,自动滑动了最上方的问题解决

2016-05-31 11:13 381 查看
如题,这个问题:当切换fragment的时候,在切换回来,如果本页面有类似viewpager的控件,会自动的被隐藏了,自动滑动了最上方


解决:

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

记得

android:focusable=true

android:focusableInTouchMode=true

android: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会覆盖子类控件而直接获得焦点
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  工作