ExpandableListView OnChildClickListener not work

前端 未结 3 1359
既然无缘
既然无缘 2020-12-17 10:28

i have my problem with my Expandable ListView on my Android Application

this my code

package proyek.akhir;
import android.app.ListActivity;
import an         


        
3条回答
  •  忘掉有多难
    2020-12-17 11:07

    You must activate that your children are selectable! To do that return true in your (overriden) isChildSelectable method of class ExpandableListAdapter.

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

提交回复
热议问题