如何处理listview的item及item内控件的点击事件冲突
1个回答
2016-09-12 · 知道合伙人互联网行家
护肤达人IT宅族
知道合伙人互联网行家
向TA提问 私信TA
知道合伙人互联网行家
采纳数:5637
获赞数:17441
毕业于曲阜师范大学,学士学位。互联网行业2年从业经验,读过SEO相关书籍。现任爱家网SEO优化专员。
向TA提问 私信TA
关注
展开全部
两种办法
1.设置里面控件的focusable为false
<LinearLayout xmlns:android /schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btItem"
android:focusable="false"
android:text="点我"
/>
</LinearLayout>
2.设置整个item根布局的descendantFocusability为blocksDescendants
<LinearLayout xmlns:android="h schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:descendantFocusability="blocksDescendants"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btItem"
android:text="点我"
/>
</LinearLayout>
这样item里的button和item的点击事件互不冲突了
1.设置里面控件的focusable为false
<LinearLayout xmlns:android /schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btItem"
android:focusable="false"
android:text="点我"
/>
</LinearLayout>
2.设置整个item根布局的descendantFocusability为blocksDescendants
<LinearLayout xmlns:android="h schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:descendantFocusability="blocksDescendants"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btItem"
android:text="点我"
/>
</LinearLayout>
这样item里的button和item的点击事件互不冲突了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询