如何执行ExpandableListView子单击

时间:2014-07-22 11:32:32

标签: android expandablelistview

我创建了一个包含3个组的可扩展ListView,每个组都有几个子组。

在OnCreate中,我使用exLv.expandGroup(0)扩展第一组;然后我想点击这个组的孩子,而无需用户触摸它(动态)。 我试过exLv.setSelectedChild但它没有用。 我只想在onCreate做一次。怎么做?

1 个答案:

答案 0 :(得分:-2)

在您的活动类中,从列表视图中覆盖OnChildClickListener()方法。

expandbleList.setOnChildClickListener(new OnChildClickListener() {

        @Override
        public boolean onChildClick(ExpandableListView parent, View v,
                int groupPosition, int childPosition, long id) {

           //do something here.

        }
    });