如何强制Android应用程序仅进入横向或仅进入纵向? [英] how to force an Android app into landscape only or portrait only?

查看:187
本文介绍了如何强制Android应用程序仅进入横向或仅进入纵向?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何强制应用仅进入横向或纵向模式?我想将应用锁定为用户选择的方向.

how to force an app into landscape only or portrait only? I want to app locked into the orientation of user choices.

非常感谢分享!

推荐答案

 <activity android:name="Intro"
            android:screenOrientation="portrait"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="com.gmaninc.package.INTRO" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

清单中每个活动中的以下一项

one of the following in each activity in the manifest

android:screenOrientation="portrait"
android:screenOrientation="landscape"

这篇关于如何强制Android应用程序仅进入横向或仅进入纵向?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆