如何防止背景活动的方向更改?

时间:2014-09-08 11:01:07

标签: android orientation screen-orientation android-orientation orientation-changes

我阻止某个活动通过

更改为横向模式
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT);

除非我打电话给新活动,否则一切正常。当新活动变为横向模式时,后台活动也会发生变化。我该如何防止这种情况?

1 个答案:

答案 0 :(得分:0)

在onPause中将您的活动修复为纵向模式。

onPause(){
  // Your code to make this app fixed to portrait when in background
}