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% 的屏幕将由其他元素组成,例如按钮。在android中不可能这样做吗?如果是这样,我应该处理哪个属性?

提前致谢。

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 回答