9

我想用 onResume() 方法重新启动一个活动。我以为我可以使用 Intent 来实现这一点,但这以无限循环结束。

@Override
protected void onResume() {
    Intent intent = new Intent(MainActivity.this, MainActivity.class);
    MainActivity.this.startActivity(intent);
    finish();
    super.onResume();
}

是否有另一种方法来重新启动活动?

4

2 回答 2

17

我会质疑你为什么要这样做......但这是我想到的第一件事:

@Override
protected void onCreate(Bundle savedInstanceState) {
    ...
    Log.v("Example", "onCreate");
    getIntent().setAction("Already created");
}

@Override
protected void onResume() {
    Log.v("Example", "onResume");

    String action = getIntent().getAction();
    // Prevent endless loop by adding a unique action, don't restart if action is present
    if(action == null || !action.equals("Already created")) {
        Log.v("Example", "Force restart");
        Intent intent = new Intent(this, Example.class);
        startActivity(intent);
        finish();
    }
    // Remove the unique action so the next time onResume is called it will restart
    else
        getIntent().setAction(null);

    super.onResume();
}

您应该"Already created"设置唯一,以免其他 Intent 意外执行此操作。

于 2012-08-27T17:26:27.143 回答
0

只需在您的 onResume() 中使用它

@Override protected void onResume() { recreate(); }

于 2019-07-12T12:08:05.070 回答