天天看点

[转载]解决ListView的OnItemClickListener无效问题

原作地址:http://www.jianshu.com/p/db56284c7878

当我们自定义ListView的item时,常常会加入诸如Button,ImageButton,CheckBox等控件,这时候我们会发现:ListView.setOnItemClickListener(new ...)没有效果,点击Item没有反应,那是因为此时的焦点已经被子view获取(Button,ImageButton...),所以响应点击操作的并不是Item。

解决方案:

  • descendantFocusability

    API描述如下:

    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.

    [转载]解决ListView的OnItemClickListener无效问题

该属性是当一个为view获取焦点时,定义viewGroup和其子控件两者之间的关系。

属性的值有三种:

  • beforeDescendants:viewgroup会优先其子类控件而获取到焦点
  • afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
  • blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

通常我们用到的是blocksDescendants,在Item的根布局设置

android:descendantFocusability="blocksDescendants"

  • item_list_view.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
------------------------------------------------------------------------------
    android:descendantFocusability="blocksDescendants"
------------------------------------------------------------------------------
>
    <ImageView
        android:id="@+id/image_library"
        android:layout_width="match_parent"
        android:layout_height="140dp"
        android:background="@drawable/color_white_yellow"/>
    <TextView
        android:id="@+id/text_library"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:text="大众书局"
        android:textSize="18sp"
        android:textStyle="bold"
        android:layout_marginTop="10dp"
        android:textColor="@color/white"/>
    <TextView
        android:id="@+id/text_location"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/text_library"
        android:text="东城汇 | 仙林"
        android:layout_centerHorizontal="true"
        android:textSize="15sp"
        android:textColor="@color/white"/>

    <ImageButton
        android:id="@+id/btn_star"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_margin="10dp"/>

</RelativeLayout>
           

ok,设置好了之后,子view的可以设置OnClick(),Item也可以setOnItemClickListener()了,又可以愉快的玩耍了。

作者:AlphaRay

链接:http://www.jianshu.com/p/db56284c7878

來源:简书

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。