我试图在“onActivityResult”函数中调用一个新的Intent,但结果并不是我所希望的。它要么无休止地循环,要么提前退出。
在“main”活动中,我创建了一个bundle数组,然后为每个bundle创建一个intent,等待当前活动返回“done”,然后用下一个bundle启动一个新的。
问题是每次调用onActivityResult后都会重新启动“main”活动,这意味着它会再次调用onStart,并且我的所有bundle都会在无限循环中重新创建。避免这种情况的唯一方法似乎是添加“finish();”到onActivityResult函数的末尾,但只有一次调用onActivityResult后才会停止整个过程。
这是代码(删节):
public class mainActivity extends Activity {
ArrayList<Bundle> bundles;
int taskId = 0;
// A few other things here; nothing important to this question.
public void onCreate(savedInstanceState)) {
super.onCreate(savedInstanceState);
bundles = new ArrayList<Bundle>();
}
public void onStart() {
// Here I perform a loop that creates a number of bundles
// and adds them to the "bundles" array (not shown).
// Start the first activity:
Intent firstIntent = new Intent(this, StuffDoer.class);
firstIntent.putExtras(bundles.get(0));
startActivityForResult(firstIntent, taskId);
bundles.remove(0);
}
public void onActivityResult(int requestCode, int result, Intent data) {
super.onActivityResult(requestCode, result, data);
if (result == RESULT_OK) {
if (bundles.size() > 0) {
taskId += 1;
Intent intent = new Intent(this, StuffDoer.class);
intent.putExtras(bundles.get(0));
startActivityForResult(intent, taskId);
bundles.remove(0);
} else {
Log.v(TAG, "No more to do, finishing");
finish();
}
} else {
Log.v(TAG, "Did not get the expected return code");
}
// finish(); // If I uncomment this, it only performs this function
// once before quitting. Commented out, it loops forever
// (runs the onStart, adds more bundles, etc.).
}
}
这样做的正确方法是什么?
答案 0 :(得分:0)
我不清楚你要做什么,但是如果你只需要在首次启动活动时创建你的Bundles,那么在onCreate()中进行。通常,您为活动实现的回调是onCreate,onPause和onResume。在活动的正常生活中,它位于onResume和onPause之间的生命周期循环中。
然而,我很好奇。为什么每次都需要返回主要活动?听起来好像您的主要活动“控制”了其他活动。通常,Android应用程序的更好模型是让每个活动独立工作,并在必要时切换到另一个活动。这本质上是一个没有“主”的“程序”,除了用户单击启动器中的应用程序图标时启动的“第一个等于”活动。