如何防止或处理 phone 屏幕锁定时调用 onResume?

How to prevent or handle onResume being called when phone screen is locked?

默认情况下,我的应用程序设置为横向。这会在设备锁定时导致问题,因为方向将更改为纵向(以适应锁定的屏幕),这反过来会强制调用 onResume。发生这种情况时,所有对象都为空,使应用程序容易崩溃。我已进行更改以防止崩溃,并且该应用程序正常运行 'ok'。 OK 的意思是,当您从锁定屏幕 return 进入应用程序时,半秒钟 UI 处于纵向,然后才捕捉到正确的方向。

我为解决所做的事情

我。在 onResume

中对所有不会为 null 的对象添加了 null 检查

二。在清单

中添加了 android:configChanges="orientation|screenSize"

三。在清单

中添加了 android:screenOrientation="landscape"

还可以做些什么来使从锁定屏幕回到我的应用程序的转换更顺畅,没有光点、闪烁或方向变化?

据我所知,你的问题。您面临 onResume() 中所有对象的空值,这会导致应用程序崩溃。 而且您无法真正避免 onResume() 再次被调用。这是 activity 生命周期的预期行为。但是有一个窍门。您可以创建一个标志来了解屏幕是否为 onPause() 中的 off/on。 phone 解锁后,它将调用 onResume(),您可以管理该标志。

boolean isScreenUnLock = false;        
@Override
protected void onPause() {
     super.onPause();
     PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
     isScreenUnLock = pm.isScreenOn();      
}

@Override
protected void onResume() {
    super.onResume();
    if(isScreenUnLock){
        //Do something
    }
}

但这似乎不是更好的方法。我建议处理 activity 状态,而不是避免 Activity 中的所有对象为 null。查看 this 示例以获取更多详细信息。

@Override
public void onSaveInstanceState(Bundle savedInstanceState) {
  super.onSaveInstanceState(savedInstanceState);
  // Save UI state changes to the savedInstanceState.
  // This bundle will be passed to onCreate if the process is
  // killed and restarted.
  savedInstanceState.putBoolean("MyBoolean", true);
  savedInstanceState.putDouble("myDouble", 1.9);
  savedInstanceState.putInt("MyInt", 1);
  savedInstanceState.putString("MyString", "Welcome back to Android");
  // etc.
}

@Override
public void onRestoreInstanceState(Bundle savedInstanceState) {
  super.onRestoreInstanceState(savedInstanceState);
  // Restore UI state from the savedInstanceState.
  // This bundle has also been passed to onCreate.
  boolean myBoolean = savedInstanceState.getBoolean("MyBoolean");
  double myDouble = savedInstanceState.getDouble("myDouble");
  int myInt = savedInstanceState.getInt("MyInt");
  String myString = savedInstanceState.getString("MyString");
}

或者快速处理上述状态的方法。只需简单地使用这个 library.