这是子元素的 onclick 监听器。
getExpandableListView().setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
// TODO Auto-generated method stub
onChild_Click(parent,v,
groupPosition,childPosition, id);
return true;
}
});
单击子元素时它正在工作。现在我需要选择第一个孩子作为默认值(在 onCreate() 方法中)。对于扩展组,我正在使用它。
getExpandableListView().expandGroup(0);
我为子元素尝试了这些东西,但它没有触发 onclick 事件。但是当点击子元素时它正在工作。
getExpandableListView().setItemChecked(1, true);
和
getExpandableListView().setSelectedChild(0, 0, true);