以下代码来自MainActivity.xml文件
只有标题“G.K.测验”出现在应用程序上。 这是10个问题,有3个radiobutton选项可供选择,所有这些都在ScrollView线性布局中。我不明白问题是什么。我是Android编码的新手。它与ScrollView有关吗?谢谢你提前。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="com.example.android.generalquiz.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16sp"
android:fontFamily="casual"
android:text="@string/quiz"
android:textAlignment="center"
android:textSize="30sp"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/first"
android:textSize="18sp" />
<RadioButton
android:id="@+id/ans1"
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/largest" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/longest" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/none" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/second"
android:textSize="18sp" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/seconda" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/secondb" />
<RadioButton
android:id="@+id/ans2"
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/secondc" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/third"
android:textSize="18sp" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/thirda" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/thirdb" />
<RadioButton
android:id="@+id/ans3"
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/thirdc" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/fourth"
android:textSize="18sp" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fourtha" />
<RadioButton
android:id="@+id/ans4"
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fourthb" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fourthc" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/fifth"
android:textSize="18sp" />
<RadioButton
android:id="@+id/ans5"
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fiftha" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fifthb" />
<RadioButton
style="@style/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fifthc" />
</LinearLayout>
</ScrollView>