我使用这种布局:
<?xml version="1.0" encoding="UTF-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:background="#00868B">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:gravity="center"
android:layout_alignParentTop="true"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:gravity="center"
android:layout_below="@+id/title" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<Button ..
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="@string/getloc"
/>
<Button ..
android:layout_width="match_parent"
android:layout_height="50dp"
/>
<Button ..
android:layout_width="match_parent"
..
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
</ScrollView>
没有滚动视图。我希望当用户在第二个文本视图中输入某事物时“向下”,因为否则文本视图会变大,但第一个按钮是稳定的并阻塞视图。