我想实现一个树列表,其中包含我从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>