0

我有一个线性布局(垂直方向),其中包含两个嵌套的线性布局。

  • 第一个线性布局具有基于特定活动的上下文动态应用的背景图像。图像几乎占据了整个屏幕的大小
  • 第二个线性布局包含两个复选框(水平方向),应该显示在活动的底部。

我的问题是,如何确保第二个线性布局显示在屏幕底部,并且只显示它需要的最少数量,让第一个线性布局尽可能多地显示其背景图像?目前它正在被第一个 LL 的 bg 图像推离屏幕。

谢谢你。

4

3 回答 3

1

您可以使用RelativeLayout作为外部布局,而不是LinearLayout

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

    <LinearLayout
         android:id="@+id/bottomLayout"
         android:layout_alignParentBottom="true"
         android:layout_centerHorizontal="true"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content">
        ...
    </LinearLayout>

    <LinearLayout
         android:id="@+id/topLayout"
         android:layout_above="@id/bottomLayout"
         android:layout_centerHorizontal="true"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent">
        ...
    </LinearLayout>

</RelativeLayout>
于 2012-10-16T15:17:11.537 回答
1

使用权重你可以做你想做的事:

<?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" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" 
        android:background="#FF0000"
        android:layout_weight="1"
        >



    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:orientation="horizontal"
        android:background="#00FF00"
        android:layout_weight="1"
        >
        <CheckBox
            android:id="@+id/checkBox1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="CheckBox" />
        <CheckBox
            android:id="@+id/checkBox2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="CheckBox" />
    </LinearLayout>

</LinearLayout>
于 2012-10-16T14:55:13.687 回答
0
<LinearLayout
    ... >
    <LinearLayout
        ...
        android:layout_height="0dp"
        android:layout_weight="1"
        >
        ...
    </LinearLayout>
    <LinearLayout
        ...
        android:layout_height="wrap_content"
        >
        ...
    </LinearLayout>
</LinearLayout>

注意加权布局,高度设置为“0dp”。只有一个加权,加权的将拉伸以适应其余可用区域。

于 2012-10-16T15:00:02.640 回答