我有大约10个复选框,我无法上下查看所有这些复选框。我如何使用scrollview来查看它们的复选框的xml。
`
<CheckBox
android:id="@+id/CheckBox15"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
<CheckBox
android:id="@+id/CheckBox14"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</LinearLayout>
<CheckBox
android:id="@+id/CheckBox13"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
<CheckBox
android:id="@+id/CheckBox12"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
<CheckBox
android:id="@+id/CheckBox11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
<CheckBox
android:id="@+id/CheckBox10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
</LinearLayout>
` 我想在这个复选框列表中使用滚动视图,请帮忙。
答案 0 :(得分:4)
ScrollView只能包含一个View或Layout,所以将LinearLayout放在ScrollView中,然后将复选框放在LinearLayout中:
<ScrollView>
<LinearLayout>
<CheckBox />
<CheckBox />
<CheckBox />
....
</LinearLayout>
</ScrollView>