0

API から取得したデータを使用してツリー リストを実装したいと考えています。API からデータを正常に取得したと仮定すると、レイアウトはどのように見えるでしょうか? ツリーは、すべてのサブ ツリー ツリーなどを表示する必要があります。したがって、最後のレベルを表示する必要があります。このような並べ替え:

ここに画像の説明を入力

ユーザーはフォルダーを選択/選択解除でき、そのすべてのサブチャンネルを自動的に選択/選択解除する必要があります。そのため、チェックボックスが表示されます

<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/channel_row"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <CheckBox
        android:id="@+id/check_channel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:focusable="false"
        android:checked="false" />

    <TextView
        android:layout_gravity="right"
        android:id="@+id/channel_text"
        android:textIsSelectable="false"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:layout_margin="10dp" 
        android:textSize="25sp" >       
    </TextView>
</TableRow>
4

0 に答える 0