0

这就是我所拥有的,我可扩展列表视图。每个 Group 项目都是一个 Checkbox,旁边有一个 Textview。

如果组已扩展或未扩展,我希望该复选框被选中/取消选中。

反之亦然,因此如果选中复选框,则应展开列表等。

有任何想法吗?

这是我的 group_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <CheckBox
        android:id="@+id/check_channel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:focusable="false"
        android:layout_gravity="left"
        android:checked="false" />

    <TextView
        android:textSize="20sp"
        android:textIsSelectable="false"
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="55dp"/>

</RelativeLayout>

它看起来很漂亮,只需要它来检查和取消选中。

4

1 回答 1

2

啊,好吧,我就是这样做的

public View getGroupView(int groupPosition, boolean isExpanded, View convertView,ViewGroup parent) { 
    View v;
    if (convertView == null) {
        v = newGroupView(isExpanded, parent);
    } else {
        v = convertView;
    }

    if ( isExpanded ) {
        ((CheckBox) v.findViewById(R.id.check_channel)).setChecked(true);
    } else {
        ((CheckBox) v.findViewById(R.id.check_channel)).setChecked(false);
    }
    bindGroupView(groupPosition, isExpanded, v, parent);
    return v;
}
于 2013-03-26T09:15:25.560 回答