私の例では3つのクラスがあります。クラスA、主な活動。クラスAはstartActivityForResultを呼び出します。
Intent intent = new Intent(this, ClassB.class);
startActivityForResult(intent, "STRING");
クラスB、このクラスはTabActivityです。
Intent intent = new Intent(this, ClassC.class);
tabHost.addTab...
クラスC、このクラスは通常のアクティビティです。
Intent intent = this.getIntent();
intent.putExtra("SOMETHING", "EXTRAS");
this.setResult(RESULT_OK, intent);
finish();
onActivityResultはクラスAで呼び出されますが、resultCodeはRESULT_CANCELED
ではなくRESULT_OK
であり、返されるインテントはnullです。 TabHost内のActivityから何かを返すにはどうすればよいですか?
問題は、私のクラスCが実際にはクラスBの内部で実行されていることであり、クラスBがRESULT_CANCELED
をクラスAに戻すものであることに気付きました。私はまだ回避策を知りません。
ああ、神よ!数時間を費やしてAndroidのソースをダウンロードした後、私はついに解決策を見つけました。
Activityクラスを見ると、finish()
メソッドはmParent
プロパティがnull
に設定されている場合にのみ結果を返送します。そうでなければ結果は失われます。
public void finish() {
if (mParent == null) {
int resultCode;
Intent resultData;
synchronized (this) {
resultCode = mResultCode;
resultData = mResultData;
}
if (Config.LOGV) Log.v(TAG, "Finishing self: token=" + mToken);
try {
if (ActivityManagerNative.getDefault()
.finishActivity(mToken, resultCode, resultData)) {
mFinished = true;
}
} catch (RemoteException e) {
// Empty
}
} else {
mParent.finishFromChild(this);
}
}
したがって、私の解決策は、次のように、存在する場合は結果を親アクティビティに設定することです。
Intent data = new Intent();
[...]
if (getParent() == null) {
setResult(Activity.RESULT_OK, data);
} else {
getParent().setResult(Activity.RESULT_OK, data);
}
finish();
誰かがこの問題の回避策を再度探しているなら、私はそれが役に立つことを願っています。
http://tylenoly.wordpress.com/2010/10/27/how-to-finish-activity-with-results/
"param_result"を少し修正したもの
/* Start Activity */
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.thinoo.ActivityTest", "com.thinoo.ActivityTest.NewActivity");
startActivityForResult(intent,90);
}
/* Called when the second activity's finished */
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
switch(requestCode) {
case 90:
if (resultCode == RESULT_OK) {
Bundle res = data.getExtras();
String result = res.getString("param_result");
Log.d("FIRST", "result:"+result);
}
break;
}
}
private void finishWithResult()
{
Bundle conData = new Bundle();
conData.putString("param_result", "Thanks Thanks");
Intent intent = new Intent();
intent.putExtras(conData);
setResult(RESULT_OK, intent);
finish();
}
Intent.FLAG_ACTIVITY_FORWARD_RESULT?
設定されていて、この意図が既存のアクティビティから新しいアクティビティを起動するために使用されている場合、既存のアクティビティの返信先は新しいアクティビティに転送されます。
OnActivityResultをクラスBにも実装し、startActivityForResultを使用してクラスCを起動することができます。クラスBの結果が得られたら、クラスCの結果に基づいて(クラスAの)結果をそこに設定します。これを試したことはありませんが、これでうまくいくはずです。
もう1つ注意が必要なのは、アクティビティAはsingleInstanceアクティビティではないということです。 startActivityForResultが機能するためには、クラスBがアクティビティAのサブアクティビティである必要があり、シングルインスタンスアクティビティでは不可能であるため、新しいアクティビティ(クラスB)は新しいタスクで開始されます。