我有2个应用,A
和B
。
在应用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();
}
}
答案 0 :(得分:2)
答案 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)