在scrollview的根布局上添加android:descendantFocusability="blocksDescendants"
屬性的值有三種:
beforeDescendants:viewgroup會(huì)優(yōu)先其子類(lèi)控件而獲取到焦點(diǎn)
afterDescendants:viewgroup只有當(dāng)其子類(lèi)控件不需要獲取焦點(diǎn)時(shí)才獲取焦點(diǎn)
blocksDescendants:viewgroup會(huì)覆蓋子類(lèi)控件而直接獲得焦點(diǎn)
當(dāng)ScrollView里面含有EditText時(shí)EditText會(huì)失去焦點(diǎn)
解決:去除scrollview的根布局上屬性android:descendantFocusability="blocksDescendants"
在abslistview上的根布局上添加android:descendantFocusability="blocksDescendants"