4

ビューの縦向きモードと横向きモードに異なるレイアウトを配置したいアプリを作成しています。その目的のために別のフォルダーlayout-landを作成しましたが、デバイスを横向きモードに移動すると機能しません。解決策を教えてください。

これは活動です:

package com.example.fragmenttest;

import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

これは、このアクティビティの xml ファイルです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/rl"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world"
        />

     <com.google.ads.AdView
        android:id="@+id/ad"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        ads:adSize="SMART_BANNER"
        ads:adUnitId="a1501e5633125fb"
        ads:loadAdOnCreate="true"
        ads:testDevices="TEST_EMULATOR, 123456789ABCDEF" />


</RelativeLayout>

これは、layout-land フォルダー内のレイアウトの 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="match_parent"
    android:orientation="vertical" 
    android:background="@drawable/ic_action_search"
    >
   <TextView 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="This is fragment 2 "   
    /> 

</LinearLayout>
4

1 に答える 1

3

そのランドスケープ ファイル名を に変更しますactivity_main。両方のファイル名は同じでなければなりません。

于 2012-08-18T10:21:00.367 に答える