我有一个任务,一个屏幕,我想以字符串文本视图的形式向用户提供信息,并且我想通过包含单选按钮为用户提供一些选择。问题是它不适合屏幕。因此,我会放大屏幕,以便添加更多内容。但是怎么做?我已经用滚动视图和各种布局进行了测试,但我没有让它工作。
下面我有我到目前为止的代码。我有两个按钮,应该总是在底部。
我希望有一个人可以帮助我。:)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".SetupActivity" >
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="18dp"
android:orientation="horizontal" >
<Button
android:id="@+id/btnMain"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="MainActivity"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:text="@string/btnCalori" />
<Button
android:id="@+id/btnSetup"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/btnSetup" />
</LinearLayout>
<TextView
android:id="@+id/txtViewSetup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="@string/txtViewSetup" />
<TextView
android:id="@+id/txtViewHeader1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/linearLayout2"
android:layout_below="@+id/txtViewSetup"
android:layout_marginTop="16dp"
android:text="@string/txtViewAttribut" />
<RadioButton
android:id="@+id/radioBtnFemale"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/txtViewHeader1"
android:layout_below="@+id/txtViewHeader1"
android:text="@string/strFemale" />
<TextView
android:id="@+id/txtViewHeader2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/radioBtnMale"
android:layout_below="@+id/radioBtnMale"
android:layout_marginTop="14dp"
android:text="@string/txtViewWeight" />
<RadioButton
android:id="@+id/radioBtnMale"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/radioBtnFemale"
android:layout_below="@+id/radioBtnFemale"
android:text="@string/strMale" />
</RelativeLayout>