下面是布局xml文件。滚动功能在模拟器中不起作用。我做了不同的lauouts,我希望整个页面都应该滚动,以便用户可以查看页面的底部,它不会变得笨拙。我被困在这一部分。非常感谢你提前..
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="600dp"
tools:context="com.example.equationsolvertest.Equation_One"
tools:ignore="MergeRootFrame"
android:scrollbars="vertical" >
<ScrollView android:layout_width="match_parent"
android:layout_height="600dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text1"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_margin="5dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_marginTop="15dp" >
<EditText
android:id="@+id/a1"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="numberSigned" />
<TextView
android:id="@+id/xsq1"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:text="x2"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="20dp" />
<TextView
android:id="@+id/plus"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="@string/plus"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_marginTop="15dp" >
<EditText
android:id="@+id/b2"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="numberSigned" />
<TextView
android:id="@+id/textView4"
android:layout_width="30dp"
android:layout_height="wrap_content"
android:text="x"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="20dp" />
<TextView
android:id="@+id/textView4"
android:layout_width="30dp"
android:layout_height="wrap_content"
android:text="@string/plus"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="10dp" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_marginTop="15dp" >
<EditText
android:id="@+id/c3"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="numberSigned" />
<TextView
android:id="@+id/c3"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:text="= 0"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="20dp" /> </LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/calculate1"
android:layout_width="198dp"
android:layout_height="60dp"
android:layout_gravity="center"
android:layout_marginTop="25dp"
android:layout_weight="0.10"
android:text="Button" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="2"
android:layout_marginTop="15dp" >
<TextView
android:id="@+id/x1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="x1"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_marginLeft="5dp" />
<TextView
android:id="@+id/x2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="x2"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_marginLeft="5dp"
android:layout_marginTop="10dp" />
</LinearLayout> </LinearLayout>
</ScrollView>
</FrameLayout>