1

私のアプリは次のようになります。

これは、それがうまくスケーリングされなかった前に私が持っていた方法ですが、それがどのように見えるべきかです。だから私はこれをやっていますが、それは私に多くの問題を与えています。

しかし、一見同じように見える設定でも、2行目はすべての部屋を占有し、次のようになります。

なぜそれがこれをしているのか説明はありますか?それは私を打ち負かします。これが私のXMLです。解決策はありますか?

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout02"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" 
android:weightSum="7.0"
>

<LinearLayout
    android:id="@+id/LinearLayout03"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1.0" >

<ImageView
    android:id="@+id/terranlogo1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
    android:src="@drawable/terranlogo" />

<ImageView
    android:id="@+id/protosslogo1"
    android:layout_width="wrap_content"
    android:layout_weight="1.0"
    android:layout_height="wrap_content"
    android:src="@drawable/protosslogo" />

<ImageView
    android:id="@+id/zerglogo1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
    android:src="@drawable/zerglogo" />
</LinearLayout>

<LinearLayout
    android:id="@+id/LinearLayout04"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1.0" >

<CheckBox
    android:id="@+id/ck_t1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:layout_weight="1.0"/>

<CheckBox
    android:id="@+id/ck_p1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="25dp"
    android:layout_weight="1.0" />

<CheckBox
    android:id="@+id/ck_z1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="25dp"
    android:layout_weight="1.0" />
 </LinearLayout>

  <LinearLayout
    android:id="@+id/LinearLayout05"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1.0" >

<ImageView
    android:id="@+id/terranlogo2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
    android:src="@drawable/terranlogo" />

<ImageView
    android:id="@+id/protosslogo2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
    android:src="@drawable/protosslogo" />

<ImageView
    android:id="@+id/zerglogo2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
    android:src="@drawable/zerglogo" />
 </LinearLayout>

<LinearLayout
    android:id="@+id/LinearLayout06"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:orientation="horizontal"
    android:layout_weight="1.0" >

<CheckBox
    android:id="@+id/ck_t2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0" />

<CheckBox
    android:id="@+id/ck_p2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
    android:layout_marginLeft="25dp" />

<CheckBox
    android:id="@+id/ck_z2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
    android:layout_marginLeft="25dp" />
</LinearLayout>

 <LinearLayout
    android:id="@+id/LinearLayout07"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:orientation="horizontal"
    android:layout_weight="1.0" >

<TextView
    android:id="@+id/textView4"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Choose your opponets race(s) and your race(s)" />
</LinearLayout>

<LinearLayout
    android:id="@+id/LinearLayout08"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:orientation="horizontal"
    android:layout_weight="1.0" >

<TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Game Length"
    android:layout_weight="1.0"
    android:textSize="15dp" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:text="Mistakes Allowed"
    android:layout_weight="1.0"
    android:textSize="15dp" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Answer Time"
    android:layout_weight="1.0"
    android:textSize="15dp" />
</LinearLayout>

 <LinearLayout
    android:id="@+id/LinearLayout09"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:orientation="horizontal"
    android:layout_weight="1.0" >

 <Spinner
    android:id="@+id/s_answertime"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
 />

<Spinner
    android:id="@+id/s_mistakenumber"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
 />


<Spinner
    android:id="@+id/s_gametime"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1.0"
 />

</LinearLayout>
</LinearLayout>
4

1 に答える 1

3

中央のLinearLayoutの高さはwrap_contentに設定されていますが、これは希望どおりではありません。ルートLinearLayoutのすべての直接の子をlayout_height="0dp"に設定すると、すべてのアイテムの高さが均等に分散されます。

また、すべての要素がコンテナの高さの100%を占めるようにする場合は、weightSum=7は不要です。

詳細については、http: //ugiagonzalez.com/2012/01/19/android-linearlayout-distribution-explained-weight-and-sizes/を参照してください。

于 2012-07-06T22:06:35.750 に答える