高さが異なるデバイスに適合しません。ここで ボックスレイアウトを作成し、フルスクリーンとフルハイトに合わせる方法
コードは次のとおりです。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<include android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/left_center"
layout="@layout/card_center_top" />
<include android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/right_"
layout="@layout/card_center_right" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<include android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/left_bottom"
layout="@layout/card_left_bottom" />
<include android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/right_bottom"
layout="@layout/card_right_bottom" />
</LinearLayout>
それは、すべてのデバイス上のフィッティングではなく、この問題が発生ようにする方法を知りません。前もって感謝します。
あなたのコードを最初に投稿しますか? – Ironman