最近實現一個聊天功能,對會話頁面fragment中使用listview實現,但是點擊時,item沒有反應。
原因是因為item中有很多控件,它們會與父控件搶奪焦點,導致item沒有反應。
使用item布局的android:descendantFocusability來解決:
該屬性有3個值:
beforeDescendants ? ?0 ?viewgroup優(yōu)先其子控件獲取焦點
afterDescendants ? 1 ?viewgroup當子控件不需要焦點時才獲取焦點
blocksDescendants ? 2 ? viewgroup會覆蓋子控件直接獲取焦點
保證item獲取焦點就可以了。