listview item点击和子控件的冲突

问题:如题

解决: 开发中很常见的一个问题,项目中的listview不仅仅是简单的文字,常常需要自己定义listview,自己的Adapter去继承BaseAdapter,在adapter中按照需求进行编写,问题就出现了,可能会发生点击每一个item的时候没有反应,无法获取的焦点。原因多半是由于在你自己定义的Item中存在诸如ImageButton,Button,CheckBox等子控件(也可以说是Button或者Checkable的子类控件),此时这些子控件会将焦点获取到,所以常常当点击item时变化的是子控件,item本身的点击没有响应。

 例如

<?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:layout_marginTop="5dp"
    android:id="@+id/comment_reply"
    android:descendantFocusability="blocksDescendants"           //这是关键
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/comment_reply_writer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="5sp"
      android:layout_marginLeft="2dp"
        android:text="作者"
        android:textColor="@color/blue"
        android:textSize="15sp"
       />
    
</LinearLayout>


你可能感兴趣的:(listview item点击和子控件的冲突)