6

我有一个应用程序是 SingleTask 并且能够收听“测试”方案。

如果我单击按钮(请参阅代码),我会重新启动自己并调用 onNewIntent 给我“测试”意图(现在我可能会通过推送片段来对此做出反应)

现在,如果我按主页然后打开应用程序启动器并重新输入我的应用程序,我希望调用 onNewIntent 但意图为空,因为我不想重做我的操作(例如推送片段)。但是 onNewIntent 给了我用于启动我的活动的最后一个意图,即“测试”意图。

我应该怎么做才能防止推送相同的片段?有没有不使用我自己的 ID 的好方法。

public class OnNewIntentTestActivity extends Activity {
/** Called when the activity is first created. */

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Log.e("", "on create");

    ((Button) findViewById(R.id.button1)).setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            Log.e("", "Relaunch activity");
            startActivity(new Intent(Intent.ACTION_VIEW,  Uri.parse("testing://hello")));

        }
    });
}

@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);

    Log.e("", "onNewIntent: " + (intent == null? "none" : (intent.getAction() + ":" + intent.getData())));
}
}
4

1 回答 1

0

设置意图(空);在 onNewIntent 中获得所需的数据后

于 2013-07-03T08:28:56.937 回答