任意の数の行を持つことができるListViewを表示しています。ListViewでコンテンツをラップしたい。また、リストのサイズに関係なく、画面の下部にテキストを表示したいと思います。そのようです:
これを実現するための私の試みは以下のとおりですが、コンテンツが大きい場合、左下の画像のように見えます。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@color/blue">
<TextView
android:id="@+id/fine_print"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below:"@+id/table"
android:gravity="center_horizontal"
/>
<ListView
android:id="@+id/table"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/white_box">
</ListView>
</RelativeLayout>
そして追加
android:layout_above="@id/fine_print"
@ id / tableにすると、右下の画像のようになります。
どうすれば自分のやりたいことを実行できますか?