我试图在 Android 中获得一个非常简单的布局,但我无法让它工作。我想要的只是一个标题(通过include
一个 XML 文件),然后是一个ScrollView
显示大量文本的 a,以及底部的两个按钮,它们应该始终可见。
我一直在摆弄LinearLayout
s 和RelativeLayout
s,但不知何故,我无法让它工作。到目前为止,我所拥有的是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include layout="@layout/header" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ScrollView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/svDisclaimer"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/tvDisclaimer">
</TextView>
</ScrollView>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/svDisclaimer"
>
.. [ snip ] ..
</LinearLayout>
</RelativeLayout>
</LinearLayout>
( .. [snip] .. 是我的按钮所在的位置)标题在那里,滚动视图弹出,但按钮无处可见。