• SrollView与RecyclerView


    ScrollView嵌套RecyclerView,当我离开当前页面,然后又回来时,RecyclerView就会把它上边的控件都挤出页面,它显示在页面最上边。

    原因应该是RecyclerView抢了焦点,只需要把ScrollView中最上边的那个控件加上几句代码就可以解决这个问题。

     android:focusable="true"
     android:focusableInTouchMode="true" 

    这个哥们timshinlee提供了一个更简单的方法,只需一行代码就可以搞定。

    我们知道,ScrollView下只能包裹一个控件,所以我们常用ScrollView包裹一个LinearLayout(或RelativeLayout),然后再包裹我们的其他控件(比如RecyclerView等),那一行代码就写在LinearLayout(或RelativeLayout)上。

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

    只写一行:Android:descendantFocusability=”blocksDescendants”

    就可以解决RecyclerView抢焦点,把它上面的控件顶飞的bug了。

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

    本来我以为beforeDescendants也可以起作用,可事实证明我还是太天真了,只能用block,block的意思是阻止。

  • 相关阅读:
    javascript验证QQ号、邮箱和手机号码
    js 引擎 和 html 渲染引擎
    ASP.NET MVC 4 简介
    SqlDateTime overflow / SqlDateTime 溢出
    ASP.NET MVC ViewBag/ViewData/TempData区别
    C#内存分配
    Repeater数据绑定和操作
    Uploadify导致Chrome频繁崩溃Crash
    巧用Ajax的beforeSend 提高用户体验
    ASP.NET MVC
  • 原文地址:https://www.cnblogs.com/banzhuan/p/6757016.html
Copyright © 2020-2023  润新知