如何将应用程序锁定到横向

时间:2016-12-27 22:42:15

标签: java android

我知道还有另外两个这样的帖子,听我说我已经尝试了他们的代码,而且我无法让我的应用程序锁定到横向模式。

我已经在Java清单中放入屏幕方向,但仍然没有。这是代码。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.anthonypalmer.tappydefender">
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
        android:screenOrientation="landscape"
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <!--
    ATTENTION: This was auto-generated to add Google Play services to your project for
    App Indexing.  See https://g.co/AppIndexing/AndroidStudio for more information.
    -->
    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

1 个答案:

答案 0 :(得分:1)

你把你的属性放在了错误的地方。 android:themeandroid:screenOrientation是&{39} android:name <activity>的{​​{1}}部分:

 <activity
        android:name=".MainActivity"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
        android:screenOrientation="landscape">