我ExpandableListView
在我的 Android 应用程序中使用 a ,如果用户长时间单击 group 元素,我想执行一个操作,所以我OnLongClickListener
在我的BaseExpandableListAdapter
扩展中定义了 a 。侦听器按方面工作,但子元素不再扩展。有任何想法吗?
public class ConnectionAdapter extends BaseExpandableListAdapter {
...
public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
ViewGroup parent) {
// convertView is a LinearLayout
convertView.setOnLongClickListener(new OnLongClickListener() {
public boolean onLongClick(View v) {
// my action here
return true;
}
});
}
...
}