0

これは私が持っているものです、私は展開可能なリストビューです。各グループ項目は、横に 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 に答える