Androidで非常にシンプルなレイアウトを取得しようとしていますが、機能させることができません。私が欲しいのは、ヘッダー(include
XMLファイルによる)と、それに続くScrollView
大きなテキストの本文を表示するためのa、および下部にある2つのボタンだけです。これらは常に表示されているはずです。
私は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] ..は私のボタンがある場所です)ヘッダーはそこにあり、スクロールビューがポップアップしますが、ボタンはどこにも表示されません。