可能是一个布局文件可以解释我在说什么
<?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中不可能这样做吗?如果是这样,我应该处理哪个属性?
提前致谢。