これは私が持っているものです、私は展開可能なリストビューです。各グループ項目は、横に 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>
きれいに見えます。チェックとチェックを外すだけです。