我试图从“onActivityResult”函数中调用一个新的 Intent,但结果不是我所希望的。它要么无限循环,要么提前退出。
在“主要”活动中,我创建了一个包数组,然后为每个包创建一个意图,等待当前活动返回“完成”,然后使用下一个包开始一个新活动。
问题是“主要”活动在每次调用 onActivityResult 后重新启动,这意味着它的 onStart 再次被调用,并且我的所有包都在无限循环中重新创建。避免这种情况的唯一方法似乎是添加“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.).
}
}
这样做的正确方法是什么?