我有一个我想阻止旋转的活动,因为我正在启动一个AsyncTask,屏幕旋转使它重新启动。

有没有办法告诉这个活动“即使用户像疯了一样摇晃他的手机也不要旋转屏幕”?


当前回答

在AndroidManifest.xml中,ACTIVITY的以下属性就是你所需要的:

android:configChanges="orientation"

因此,完整的活动节点将是:

<activity android:name="Activity1"
          android:icon="@drawable/icon"
          android:label="App Name"
          android:excludeFromRecents="true"
          android:configChanges="orientation">
    <intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.LAUNCHER"/>
    </intent-filter>
</activity>

其他回答

而不是进入AndroidManifest,你可以这样做:

screenOrientation = getResources().getConfiguration().orientation;
getActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
... AsyncTask

screenOrientation = getResources().getConfiguration().orientation;


@Override
protected void onPostExecute(String things) {
    context.setRequestedOrientation(PlayListFragment.screenOrientation);
    or 
    context.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR);
}

唯一的缺点是它要求API级别18或更高。所以基本上这是矛的尖端。

我发现最简单的方法就是把

this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

在onCreate中,就在后面

setContentView(R.layout.activity_main);

所以…

@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}

在你的Manifest文件中,对于每个你想锁定屏幕旋转的Activity添加:如果你想锁定在水平模式:

<activity
        ...
        ...
        android:screenOrientation="landscape">

或者如果你想锁定在垂直模式:

<activity
            ...
            ...
            android:screenOrientation="portrait">

你可以按照下面的逻辑来防止AsyncTask运行时屏幕自动旋转:

使用getRequestedOrientation()在活动中存储当前屏幕方向。 使用setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR)禁用自动屏幕朝向。 运行/执行AsyncTask。 在AsyncTask结束时,使用setRequestedOrientation(oldOrientation)恢复你之前的方向状态。

请注意,有几种方法可以访问AsyncTask中的Activity(运行在UI线程上)属性。你可以实现你的AsyncTask作为一个内部类,或者你可以使用消息处理程序戳你的活动类。

在AndroidManifest.xml文件中使用“portrait”用户似乎是一个很好的解决方案。但它会迫使某些设备(在横向环境下工作得最好)进入纵向模式,而不能获得正确的方向。在最新的Android版本上,你会得到一个错误。所以我的建议是使用“nosensor”。

<activity
        ...
        ...
        android:screenOrientation="nosensor">