如何禁用BaseExpandableListAdapter

时间:2015-06-22 16:10:25

标签: android android-listview expandablelistview expandablelistadapter

我想禁用ExpandableListView中某些项目的可扩展性。

到目前为止,我知道它可以从ExpandableListView完成,但我认为从ListView控制显示/为什么/哪里不是很好 - 这个任务属于适配器而且我想要禁用可扩展性。

那么如何从扩展BaseExpandableListAdapter

的类中完成它

到目前为止,我已尝试将convertView可见性设置为View.GONE,但它不起作用(即它显示一些奇怪的视图,空但不是View.GONE

@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
    if (null == convertView) {
        convertView = inflater.inflate(R.layout.system_status_child, parent, false);
    }

    Item item = systemStatus.get(groupPosition);

    if(item.isStatusOk()){
        convertView.setVisibility(View.GONE);
    }
    else{
        convertView.setVisibility(View.VISIBLE);
        ((TextViewMuseo)convertView).setText(item.getChild_text());
    }

    return convertView;
}

system_status_child.xml看起来像这样:

<?xml version="1.0" encoding="utf-8"?>

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/system_status_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="some text" />

1 个答案:

答案 0 :(得分:5)

当孩子们为这些群体计算时,只需返回0:

@Override
public int getChildrenCount(int groupPosition) {
    if (groupPosition == 0 || groupPosition == 1) {
        return 0;
    } else {
        // return normal children count
    }
}