Android 方向纵向布局不起作用
Android Orientation Portrait layout only doesnt work
抱歉这个百万次重复的回答,(我是Andoid的新手),但我无法实现仅保持纵向布局。我尝试使用推荐的
进行设置
android:screenOrientation="portrait"
in Mainfest.xml
(for Activity,(只有一个)),但它不起作用。
有人知道为什么吗?
下面是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.leo.vj">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name_2"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
</application>
</manifest>
您错过了 configChanges。在清单中,为您的所有活动设置此项:
<activity android:name=".YourActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"/>
The Problem is there is an extra '>' in end in declaration
<activity
android:name = ".MainActivity">
android:screenOrientation = "portrait">
Change the Activity Declaration in to :
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<categoryandroid:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
以上解决方案可行。
您错过了配置更改..
如果你想通过代码实现。
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
您似乎声明了您的主要 activity wrongly.Try 这个
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name_2"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
属性名称不匹配 screenOrientation 是正确的
请看下面
android:screenOrientation="portrait"
抱歉这个百万次重复的回答,(我是Andoid的新手),但我无法实现仅保持纵向布局。我尝试使用推荐的
进行设置android:screenOrientation="portrait"
in Mainfest.xml
(for Activity,(只有一个)),但它不起作用。
有人知道为什么吗?
下面是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.leo.vj">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name_2"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
</application>
</manifest>
您错过了 configChanges。在清单中,为您的所有活动设置此项:
<activity android:name=".YourActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"/>
The Problem is there is an extra '>' in end in declaration
<activity
android:name = ".MainActivity">
android:screenOrientation = "portrait">
Change the Activity Declaration in to :
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<categoryandroid:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
以上解决方案可行。 您错过了配置更改.. 如果你想通过代码实现。
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
您似乎声明了您的主要 activity wrongly.Try 这个
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name_2"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
属性名称不匹配 screenOrientation 是正确的
请看下面
android:screenOrientation="portrait"