我需要做一个像图片中的布局,使用 3 线性布局,或相对布局或任何类似的。中间的线性布局必须根据顶部的第一个 ll 和底部的第三个 ll 之间的自由空间来调整高度。底部的 ll 必须固定在那里。
我能怎么做?
谢谢, 马蒂亚
我需要做一个像图片中的布局,使用 3 线性布局,或相对布局或任何类似的。中间的线性布局必须根据顶部的第一个 ll 和底部的第三个 ll 之间的自由空间来调整高度。底部的 ll 必须固定在那里。
我能怎么做?
谢谢, 马蒂亚
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</LinearLayout>
</LinearLayout>
这里重要的是android:layout_weight="1"
在第二个布局
用这个
<?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" >
<LinearLayout
android:id="@+id/ui_main_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:orientation="horizontal"/>
<LinearLayout
android:id="@+id/ui_main_footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal"/>
<LinearLayout
android:id="@+id/ui_main_center"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/ui_main_header"
android:layout_above="@id/ui_main_footer"
android:orientation="vertical"/>
</RelativeLayout>