0

私が話していることを説明できるレイアウトファイルかもしれません

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


<ListView
    android:id="@+id/listview"
    android:layout_width="match_parent"
    android:layout_height="400dp" />



<LinearLayout
    android:id="@+id/sublayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

  <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/text_btn1"
    android:onClick="select" />


  <Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/text_btn2"
    android:onClick="select2" />

</LinearLayout>

ご覧のとおり、linearlayout はルート レイアウト要素として機能します。

私が欲しいのは、画面の 80% のリストビューです。画面の次の 20% は、ボタンなどの他の要素で構成されます。アンドロイドではできないのでしょうか?もしそうなら、どの属性に取り組めばよいでしょうか?

前もって感謝します。

4

1 に答える 1

0

ソリューションは を使用していると思いますandroid:layout_weightので、複数のビューのサイズ比を指定できます。これを試して:

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


<ListView
    android:id="@+id/listview"
    android:layout_width="fill_parent"
    android:layout_height="0dp" 
    android:layout_weight="80"/>



<LinearLayout
    android:id="@+id/sublayout"
    android:layout_width="fill_parent"
    android:layout_height="0dp" 
    android:layout_weight="20">

 <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/text_btn1"
    android:onClick="select" />


 <Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/text_btn2"
    android:onClick="select2" />

</LinearLayout>
</LinearLayout>
于 2012-04-22T08:52:48.907 に答える