開發中經常須要本身定義listview,去繼承BaseAdapter,在adapter中按照需求進行編寫,問題就出現了,可能會發生點擊每個item的時候沒有反應,沒法獲取的焦點。緣由多半是因爲在你本身定義的Item中存在諸如ImageButton,Button,CheckBox等子控件(也能夠說是Button或者Checkable的子類控件),此時這些子控件會將焦點獲取到,因此經常當點擊item時變化的是子控件,item自己的點擊沒有響應。 android
這時候就能夠使用descendantFocusability來解決啦,API描述以下: 佈局
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. 繼承
該屬性是當一個爲view獲取焦點時,定義viewGroup和其子控件二者之間的關係。 ip
屬性的值有三種: 開發
beforeDescendants:viewgroup會優先其子類控件而獲取到焦點 it
afterDescendants:viewgroup只有當其子類控件不須要獲取焦點時才獲取焦點 io
blocksDescendants:viewgroup會覆蓋子類控件而直接得到焦點 listview
一般咱們用到的是第三種,即在Item佈局的根佈局加上android:descendantFocusability=」blocksDescendants」的屬性就行了, view