我需要一个 editText 和 10 个复选框。在安卓手机上,我还需要有一个滚动视图。我的意思是我需要在滚动条中看到 checkboxez。怎么做?
有人可以发布布局示例吗?
我需要一个 editText 和 10 个复选框。在安卓手机上,我还需要有一个滚动视图。我的意思是我需要在滚动条中看到 checkboxez。怎么做?
有人可以发布布局示例吗?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<EditText id ="@+id/edittext1"
android:text="EditText 1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<ScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<CheckBox android:id="@+id/check" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/checkboxtest"/>
<CheckBox android:id="@+id/check" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/checkboxtest"/>
<CheckBox android:id="@+id/check" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/checkboxtest"/><CheckBox android:id="@+id/check" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/checkboxtest"/>
</LinearLayout>
</ScrollView>
</LinearLayout>
将所有组件添加到滚动视图
<ScrollView....>
<LinearLayout..>
<EditText />
<CheckBox />
<CheckBox />
<CheckBox />
<CheckBox />
.
.
</LinearLayout..>
</ScrollView>