android

我们看到了一行代码定义的变量的意思是“当前View将屏蔽他所有子控件的Focus状态,即便这些子控件是可以Focus的”,其实这段话的意思就是这个变量代表着当前的View将不顾其子控件是否可以Focus自身接管了所有的Focus,通常默认能获得focus的控件有Button,Checkable继承来的所有控件,这就意味着如果你的自定义ListViewItem中有Button或者Checkable的子类控件的话,那么默认focus是交给了子控件,而ListView的Item能被选中的基础是它能获取Focus,也就是说我们可以通过将ListView中Item中包含的所有控件的focusable属性设置为false,这样的话ListView的Item自动获得了Focus的权限,也就可以被选中了,也就会响应onItemClickListener中的onItemClick()方法,然而将ListView的Item Layout的子控件focusable属性设置为false有点繁琐,我们可以通过对Item Layout的根控件设置其android:descendantFocusability=”blocksDescendant”即可,这样Item Layout就屏蔽了所有子控件获取Focus的权限,不需要针对Item Layout中的每一个控件重新设置focusable属性了,如此就可以顺利的响应onItemClickListener中的onItenClick()方法了。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="25dip"
android:background="@drawable/list_bg" android:descendantFocusability="blocksDescendants">
<TextView android:id="@+id/uname" android:gravity="left"
android:layout_width="wrap_content" android:layout_height="25dip"
android:textColor="@drawable/item_color" android:textSize="13px"
android:text="ss" />
<LinearLayout android:layout_width="fill_parent"
android:gravity="right" android:layout_height="wrap_content">
<ImageButton android:id="@+id/imgdel"
android:layout_width="wrap_content" android:paddingRight="2px"
android:layout_height="wrap_content" android:background="@drawable/btn_check_on_selected"
android:textColor="@drawable/item_color" />
</LinearLayout>
</LinearLayout>

你可能感兴趣的:(android)