该属性是当一个为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()了,又可以愉快的玩耍了。