のようなレイアウトを取得する方法
一番下の要素の高さはwrap_contentですが、ネストされたレイアウトのEclipseでは、nested weights are bad for performance
のようなレイアウトを取得する方法
一番下の要素の高さはwrap_contentですが、ネストされたレイアウトのEclipseでは、nested weights are bad for performance
これは、ウェイト1の垂直線形レイアウトとネストされた水平線形レイアウトであり、コンテンツを高さでラップし、重みを1幅でラップします。はい、ネストされた重みはパフォーマンスに悪影響を及ぼしますが、それが必要な場合は、それが必要です。あなたの場合、Moecklin氏が指摘しているように、それはおそらく重要ではありません。
追加するために編集:
あなたはおそらくすでにこれを持っています:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1" />
<TextView
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>