欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

整理:控件之间的冲突

程序员文章站 2022-03-13 12:05:18
...

scrollview嵌套列表,页面自动滑动到底部

在ListView的父控件添加android:descendantFocusability="blocksDescendants"

<LinearLayout
            android:descendantFocusability="blocksDescendants"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
          
            <ExpandableListView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>
        </LinearLayout>

同理,listview中的item点击事件被item的控件占了,也可以用这个属性android:descendantFocusability用法简析 - Mr梵谷 - 博客园

相关标签: 控件之间的冲突