0

私は自分で指定せずにハーフフレームレイアウトとハーフグリッドレイアウトを表示するためにxmlで達成しようとしていdp ます

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

    <FrameLayout
        android:id="@+id/top"
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:background="#FFFF00"
        android:layout_weight="0"
        android:orientation="vertical" >

    </FrameLayout>

    <GridView
        android:id="@+id/buttom"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:numColumns="3" >
    </GridView>

</LinearLayout>

これのサイズを指定したくありません:

android:layout_height="250dp"

その後、すべてのサイズでこの xml を再作成する必要があります。多分私は何かを変更することができ、アンドロイドはすべてのサイズを計算しますか?

ありがとう。

4

2 に答える 2

6

次のように重みプロパティを指定できます

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

    <FrameLayout
        android:id="@+id/top"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:background="#FFFF00"
        android:layout_weight="1" >

    </FrameLayout>

    <GridView
        android:id="@+id/buttom"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:numColumns="3" 
        android:layout_weight="1">
    </GridView>

</LinearLayout>
于 2012-05-24T07:18:36.570 に答える
0

layout_weight="1"フレームレイアウトとグリッドビューの両方を追加することにより

于 2012-05-24T07:21:23.100 に答える