0

2つのネストされた線形レイアウトを内部に含む線形レイアウト(垂直方向)があります。

  • 最初の線形レイアウトには、特定のアクティビティのコンテキストに基づいて動的に適用される背景画像があります。画像は画面全体のサイズをかなり占めています
  • 2番目の線形レイアウトには、アクティビティの下部に表示される2つのチェックボックス(水平方向)が含まれています。

私の質問は、2番目の線形レイアウトが画面の下部に表示され、必要な最小限の量が表示され、最初の線形レイアウトが可能な限り背景画像を表示できるようにするにはどうすればよいですか?現在、最初のLLのbg画像によって画面から押し出されています。

ありがとうございました。

4

3 に答える 3

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 に答える
1

LinearLayoutの代わりにRelativeLayoutを外部レイアウトとして使用できます

<?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 に答える
0
<LinearLayout
    ... >
    <LinearLayout
        ...
        android:layout_height="0dp"
        android:layout_weight="1"
        >
        ...
    </LinearLayout>
    <LinearLayout
        ...
        android:layout_height="wrap_content"
        >
        ...
    </LinearLayout>
</LinearLayout>

加重レイアウトに注意してください。高さは「0dp」に設定されています。加重が1つだけの場合、加重されたものは、使用可能な残りの領域に合うように伸びます。

于 2012-10-16T15:00:02.640 に答える