重みパラメータを使用できます。
「重み」とは、特定のビューが描画された後に画面に占める余地がある場合に、そのビューが占める画面の量を指定するために使用される用語です。
次のように、aを作成してその中にLinearLayout
2 つ配置するだけです。TextViews
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="small"
android:layout_weight="0.2"
android:background="#123" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.8"
android:text="huge"
android:background="#456"
/>
</LinearLayout>
それに応じて、ビューがどのようにスペースを占有するかに気付くでしょう。小さい画面用に必要なレイアウトを作成し、ウェイト属性を指定すると、すべてが美しく調整されます