我在android中有一个可扩展的列表视图,其中组和子都作为文本视图,当我触摸父组时它显示不同的聚焦状态,但是孩子不显示这种行为。我认为重点是问题。任何建议。
答案 0 :(得分:1)
如果您使用自定义展开式列表适配器:
@SuppressLint("UseSparseArrays")
public class MyExpandableListAdapter extends BaseExpandableListAdapter {
/*
....
*/
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true; //this will be false by default.
}
}
答案 1 :(得分:0)
您必须在ExpandableListView
中添加选择器android:listSelector="@drawable/button_hover"