zoukankan      html  css  js  c++  java
  • ScrollView 嵌套 ListView 时,刷新页面时,会出现 自动 滚动至listview 的区域 解决方案:

    在页面切换  的时候,可能会出现  因listview 数据加载  导致  该页面展示的位置为 该listview区域

    解决方案:可在ScrollView中添加  

    android:descendantFocusability="blocksDescendants"

    概述:

    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:viewgroup会优先其子类控件而获取到焦点
    
            afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
    
            blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点
  • 相关阅读:
    计算机系统概述
    Qt学习--初学注意事项
    Qt实现一个简单的TextEditor
    Qt 用户登录界面
    C++ 模板
    多态与虚函数
    继承与派生
    C++ 运算符重载
    web安全-点击劫持
    web安全问题-cookie
  • 原文地址:https://www.cnblogs.com/jinglecode/p/7656387.html
Copyright © 2011-2022 走看看