私は最初のアンドロイドアプリをコーディングしようとしています。たくさん読んでいますが、レイアウトに問題があります。両方のxmlで何が問題になっていますか? 理解を深めるために、次の図を作成しました。
main.xml の私の XML
 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="2.5"
    android:contentDescription="@string/upload"
    android:scaleType="fitCenter"
    android:visibility="visible" />
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="4"
    android:gravity="center"
    android:orientation="vertical" >
    <Button
        android:id="@+id/btnShoot"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginLeft="50dp"
        android:layout_marginRight="50dp"
        android:text="@string/shoot_again" />
</LinearLayout>
</LinearLayout>
フォルダー layout-land の main.xml の場合、landscape-Mode に切り替えると、アプリがクラッシュします。
 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
    android:id="@+id/btnShoot"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginLeft="50dp"
    android:layout_marginRight="50dp"
    android:text="@string/shoot" />
<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:contentDescription="@string/upload"
    android:scaleType="fitCenter"
    android:visibility="visible" />
 </LinearLayout>