だから私はこのXMLコードを持っています:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayoutOuter"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="3.0"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1.0"
>
<Gallery
android:id="@+id/galleryMain"
android:layout_width="match_parent"
android:layout_height="90dp">
</Gallery>
<LinearLayout
android:id="@+id/linearLayoutInner"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@layout/gallery_image_background"
/>
</LinearLayout>
<TextView
android:id="@+id/galleryTextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2.0"
>
</TextView>
</LinearLayout>
現在、サイズは正しくなっていますが、それが正しいとは思いません。
3.0 の可能な重みのうち 1.0 を取得する LinearLayout は、約 2/3 のスペースを必要とします。3.0 の可能なワイトのうち 2.0 を取得する TextView は、約 1/3 のスペースを使用します。
上記は本当にどのように機能するのですか?サイズは思い通りですが... その背後にあるロジックがよくわかりません。