アクティビティの上部に a を配置し、下部のウィジェットを「飲み込む」ListView
ことなく下部に何か他のものを配置したいですか? ListView
私はこれを試しました(「何か他のもの」にはRelativeLayout
ボタンが1つ含まれています)が、機能しません。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" >
</ListView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_gravity="bottom" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Button" />
</RelativeLayout>
</LinearLayout>
ここでいくつかのヒントを探しました。これは非常に便利ですが、s については何も述べていませんListView
。ウィジェットを上ListView
に問題なく配置できますが、下には配置できません。