Androidで1年以上の経験がありますが、xmlレイアウトに本当に苦労しています:)。とにかく、次のように xml レイアウトを作成する必要があります。
私はこれで試しました:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="100">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="5">
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="15">
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="5" >
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="20" >
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="5" >
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="50" >
</RelativeLayout>
</LinearLayout>
そして、内部レイアウトに子を追加したい瞬間まで、すべてが問題ないように見えます。そのため、番号3でマークされたlistViewをRelativeLayoutに追加すると、親と一致しませんが、画面全体が使用されます。内部レイアウト 2 および 3 にリストビューを追加して、境界に一致させるにはどうすればよいですか?