次の要件があります(大幅に簡略化されています):
テキスト 2は、画面の中央から開始する必要があります。
LinearLayoutを使用してのみこれを達成できました。
<more_code></more_code><LinearLayout
android:baselineAligned="false"
android:weightSum="2"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_weight="1"
android:orientation="horizontal"
android:layout_width="0dp"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test one"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test two"/>
</LinearLayout>
<LinearLayout
android:layout_weight="1"
android:orientation="horizontal"
android:layout_width="0dp"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test three"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test four"/>
</LinearLayout>
</LinearLayout><more_code></more_code>
ネストされたビューが既に多すぎるため (したがって、myfile.xml を取得すると 10 レベル以上になり、パフォーマンスの警告に悪い)、1 つのRelativeLayoutで同じ結果が得られるかどうかを知りたいです。ドキュメントを確認しましたが、それを可能にするプロパティが見つかりませんでした。