startActivityForResult()在调用另一个应用程序时立即调用OnActivityResult

时间:2015-05-29 06:41:32

标签: android

我有2个应用,AB

在应用A中,我想调用应用B并从应用B获取结果。我试试这个代码:

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.app.B");
startActivityForResult(launchIntent, CODE);

但在我调用该代码后,立即调用onActivityResult()方法并给出结果RESULT_CANCELLED

App B清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.app.B">
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".TestActivity"
        android:label="@string/app_name"
        android:windowSoftInputMode="adjustResize" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
</manifest>

App B TestActivity:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_test);

    if (getCallingActivity() == null) {
        startActivity(new Intent(this, MainActivity.class));
        finish();
    } else {
        Intent returnIntent = new Intent();
        setResult(RESULT_OK, returnIntent);
        finish();
    }
}

3 个答案:

答案 0 :(得分:2)

我只是根据this answer

launchIntent.setFlags(0);之前添加startActivityForResult()

答案 1 :(得分:0)

getCallingActivity()

如果您使用startActivityForResult Intent调用特定的Activity,则不会为null。
 但是,您所谓的不是具体活动,而是getPackageManager().getLaunchIntentForPackage("com.app.B"); 它检索指定包的默认启动活动,并以默认(空)意图启动它。

答案 2 :(得分:0)

这就是您编码的内容.. 一旦启动了B app的Activity,你就调用了setResult方法,因为它位于onCreate()方法中。 您获得失败结果代码的原因是因为您已设置

setResult(RESULT_OK, returnIntent)

但您应该使用Activity.RESULT_OK,如

setResult(Activity.RESULT_OK, returnIntent)