码迷,mamicode.com
首页 > 移动开发 > 详细

Android ListView中Button事件 点击冲突问题的解决方案

时间:2015-09-10 13:02:05      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

今天遇到一个问题:在设置listview  自定义adapter的时候 ,点击item有点击效果,然后点击item布局文件中的某个button 的时候  也同时触发了listview的点击效果,

解决方案是:

1.在adapter布局文件中添加

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/common_strip_setting_middle"
android:descendantFocusability="blocksDescendants"
android:orientation="horizontal" >

</LinearLayout>

 

 

2.在ImageButton中 添加

android:focusable="false"
<ImageButton
                android:layout_width="25dp"
                android:layout_height="25dp"
                android:layout_marginLeft="10dp"
                android:background="@drawable/calling_btn"
                android:contentDescription="@string/empty"
                android:focusable="false" />

 

Android ListView中Button事件 点击冲突问题的解决方案

标签:

原文地址:http://www.cnblogs.com/guoxinxu/p/4797283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!