-1

私はアンドロイドでそのようなレイアウトをしたいのですが、私はそれを理解することができません。

上部に1つのボタン、下部に1つのボタン、そしてリストビューが休憩所の領域を占めるようにするには、リストビューが休憩所の領域を占めるようにするにはどうすればよいですか?親コンテナが垂直LinearLayoutの場合、これは可能ですか?

ありがとう

4

1 に答える 1

0

私のプロジェクトでやったことは

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/task_title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:text="@string/tasks" />

    <ListView
        android:id="@id/android:list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/task_title" 
        android:layout_above="@+id/add_button">
        <!-- Preview: listitem=@layout/task_list_item -->
    </ListView>

    <TextView
        android:id="@id/android:empty"
        android:text="@string/no_tasks"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|center_horizontal"
        android:layout_below="@id/task_title" 
        android:layout_above="@id/add_button"/>


    <Button
        android:id="@id/add_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="@string/plus_sign" />

    <Button
        android:id="@+id/remove_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_toRightOf="@id/add_button"
        android:text="@string/remove_task" />

</RelativeLayout>

相対レイアウトを使用すると、簡単に実行できます。主要なレイアウトプロパティはandroid:layout_alignParentBottom="true"android:layout_alignParentTop="true"

于 2012-08-04T17:36:17.867 に答える