9

onResume()メソッドを使用してアクティビティを再開したいと思います。インテントを使用してそれを達成できると思いましたが、それは無限ループで終わります。

@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"他のインテントが誤ってこのアクションを実行しないように、一意にする必要があります。

于 2012-08-27T17:26:27.143 に答える
0

onResume()でこれを使用するだけです

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

于 2019-07-12T12:08:05.070 に答える