1

質問のタイトルはすべてを物語っています。表示されているようなビューを作成しようとしています。ここでは、中央部分が画面のちょうど半分のサイズで、画面の中央に存在する必要があります。私の見解のスケッチ

私はlayout_weightとweightsumを使用しており、左右のパディングを避けています:

    <LinearLayout
    android:id="@+id/OuterlinLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:weightSum="4" >
     <LinearLayout
        android:id="@+id/containerLayout1"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:orientation="horizontal" />
     <LinearLayout
        android:id="@+id/GlobalLayout"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_gravity="center"
        android:layout_weight="2"
        android:orientation="vertical" >contens of main view</LinearLayout>
     <LinearLayout
        android:id="@+id/containerLayout2"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:orientation="horizontal" >

しかし、それは私が望んでいたものを示していません...私が犯している間違いは何ですか?

4

1 に答える 1

5

あなたの OuterlinLayoutは垂直の代わりにLinearLayout持つべきandroid:orientation="horizontal"であり、そのすべての子は持つべきですandroid:layout_width="0dp"

于 2013-06-19T18:21:04.267 に答える