Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将两项活动称为意图。通过设置主题“对话框”,在后台加载一个活动,并在此之上调用另一个活动,使其看起来像一个对话框。现在我需要在对话活动完成后完成后台活动。
任何人都可以提出一种方法来实现这一点。
提前致谢。Sundeep.S.
覆盖第一个活动的 onRestart 方法,并在那里调用 finish() ,如下所示。
@Override protected void onRestart() { // TODO Auto-generated method stub super.onRestart(); finish(); }
我想这可能会对你有所帮助。