布局-土地文件夹不会更改模拟器上的显示

时间:2018-11-25 16:46:24

标签: android

我在使仿真器切换到横向布局时遇到问题,如下面的屏幕快照所示,我已经定义了一个横向布局文件夹,其中包含文件。我不确定问题是否与它们是碎片的事实有关,但我不确定。

example Manifext.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="apackage.test.freelanceproject">
    android:configChanges="orientation|screenSize"
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        >

        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

fragment1.xml文件的开始

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:orientation="vertical"
    tools:context=".Page1Fragment">

片段(横向)xml文件的开始

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:orientation="vertical"
    tools:context=".Page1Fragment">

1 个答案:

答案 0 :(得分:0)

注意:

android: configChanges = "orientation|screenSize"
//This means you will handle the configuration change yourself, 
//the activity wont't restart automatically when device orientation changed

因此您可以删除此行。