ExpandableListView ChildItem无法响应点击

来源:互联网 发布:真的有肉便器吗 知乎 编辑:程序博客网 时间:2024/05/01 13:56

1.适配器复习isChildSelectable 返回值是否为true,一般复写默认为false

    @Override    public boolean isChildSelectable(int groupPosition, int childPosition) {        return true;    }

2.ChildItem中有Button等需要注意ChildItem布局文件的根节点是否设置`

android:descendantFocusability="blocksDescendants"

3.ChildItem中有Button等可点击的控件,实现不同的事件响应实现,可以通过接口回调的方式,以完成不同的事件监听。

0 0