0

我想改变我view的方向。为此,我在资源中创建了layout-land&layout-port文件夹。方向纵向到横向视图正在工作,但横向到纵向视图不起作用。为什么会这样?

我的 .manifest 文件代码:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="in.wptrafficanalyzer.landportdemo"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="10" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
  </application>
  </manifest>

端口/main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="this is my portrait view" 
    android:layout_gravity="center_horizontal"

    />

 </LinearLayout>

土地/main.xml

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:orientation="vertical" >

 <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="this is my Landscape view" 
    android:layout_gravity="center_horizontal"

    />

   </LinearLayout>
4

1 回答 1

3

将文件夹名称 layout-port 重命名为 layout only 并在 manifest.xml 文件中在活动标签中添加一个属性

<activity
    android:name=".MainActivity"
    android:label="@string/app_name"
    android:configChanges="orientation|screenSize">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
于 2013-02-12T13:15:50.193 回答