您还应该将第二个按钮向右对齐。
您的版本将第二个按钮放在第一个按钮上......
例子:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="back"/>
<TextView android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="txt1"/>
<Button android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="btn2"/>
<ScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/button1">
<TextView android:id="@+id/txt2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/button2"
android:text="txt2"/>
</ScrollView>
</RelativeLayout>