Android强制切换横屏竖屏不起作用的解决办法

来源:互联网 发布:网络优化前台累吗 编辑:程序博客网 时间:2024/05/22 13:00

一般通过以下来进行横屏竖屏切换

// 强制切换为竖屏setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);// 强制切换为横屏setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE);

但有时发现这并起作用,就要用到下面一个属性

<activity android:name=".MyActivity"          android:configChanges="orientation|keyboardHidden"          android:label="@string/app_name">

Android官网有详细说明:

http://developer.android.com/guide/topics/resources/runtime-changes.html#HandlingTheChange

0 0