当我点击它时,有没有办法避免我的 ExpandableList 关闭?我试过了:
@Override
public void onClick(View v) {
if (v == expandableList){
expandableList.expandGroup(0); //Let's imagine there's only one parent and one child
}
}
但它不起作用。
当我点击它时,有没有办法避免我的 ExpandableList 关闭?我试过了:
@Override
public void onClick(View v) {
if (v == expandableList){
expandableList.expandGroup(0); //Let's imagine there's only one parent and one child
}
}
但它不起作用。