我有一个简单的布局,其中有一个TextView,然后是一个RadioGroup,后面是另一个TextView(最后是一个Admob adview)。我试图让RadioGroup可滚动,对于我的生活,我似乎无法做到这一点。请指教。我的xml代码已附上。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<TextView
android:id="@+id/textview_statement"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:text="@string/wait"
android:textSize="18sp"
/>
<ScrollView
android:id="@+id/scrollview_choices"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:layout_below="@id/textview_statement"
>
<RadioGroup
android:id="@+id/choices"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="vertical"
>
<RadioButton
android:id="@+id/choice1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/choice" />
<RadioButton
android:id="@+id/choice2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/choice" />
<RadioButton
android:id="@+id/choice3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/choice" />
<RadioButton
android:id="@+id/choice4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/choice" />
<RadioButton
android:id="@+id/dontknow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/choice"
android:checked="true" />
</RadioGroup>
</ScrollView>
<Button
android:id="@+id/actonchoice_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/adViewQ"
android:layout_marginBottom="2dp"
android:text="@string/actonchoice"
android:onClick="actOnChoice"
android:textSize="12sp"
/>
<com.google.ads.AdView
android:id="@id/adViewQ"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId=""
ads:loadAdOnCreate="true"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
/>
</RelativeLayout>
答案 0 :(得分:4)
问题在于,每当第一个textview(textview_statement)有大量文本时,按钮(actonchoice_button)都会隐藏radiogroup中的一个或多个单选按钮。如果我尝试滚动,没有任何反应。选项仍然由按钮隐藏。
将android:above="@+id/actonchoice_button"
添加到ScrollView
,表示您希望将其底边固定在Button
的顶部。然后,ScrollView
及其RadioGroup
不会归入Button
。