从另一个应用程序启动不是主要活动

Posted

技术标签:

【中文标题】从另一个应用程序启动不是主要活动【英文标题】:Launch not main activity from another application 【发布时间】:2020-03-22 07:11:10 【问题描述】:

我有两个应用程序。假设:appA 和 appB

AppA 有如下清单:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".EditItemActivity" android:exported="true"></activity>
    <activity android:name=".ListActivity" android:exported="true" />
    <activity android:name=".MainActivity" android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

下一个 AppB 创建自定义通知:

public void CustomNotification() 
    RemoteViews remoteViews = new RemoteViews(getPackageName(), R.layout.mynotification);

    int idProduct = 1;

    Intent intent_anotherApp = new Intent();
    intent_anotherApp.setComponent(new ComponentName("com.hfade.appA", "com.hfade.appA.ListActivity"));  //does not works

    Intent launchIntent = getApplicationContext().getPackageManager().getLaunchIntentForPackage("com.hfade.appA"); //works but only mainActivity

    Bundle bundle = new Bundle();
    bundle.putInt("pid", idProduct);
    intent_anotherApp.putExtras(bundle);

    PendingIntent pendingIntent = PendingIntent.getActivity(
            this,
            0,
            launchIntent,        // or intent_anotherApp
            PendingIntent.FLAG_UPDATE_CURRENT);

    @SuppressLint("NewApi", "LocalSuppress")
    Notification.Builder builder = new Notification.Builder(this, channelID)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setAutoCancel(true)
            .setContentIntent(pendingIntent)
            .setContent(remoteViews);

    remoteViews.setTextViewText(R.id.txtTitle,"title");
    remoteViews.setTextViewText(R.id.firstLine,"sometext");
    remoteViews.setTextViewText(R.id.secondLine,"text");

    nm.notify(id++, builder.build());

但是我有一个问题。当我将其传递给 pendingIntent 时:

Intent launchIntent = getApplicationContext().getPackageManager().getLaunchIntentForPackage("com.hfade.appA");

它可以工作,但它只打开一个前门活动 (MainActivity) 当我尝试使用这种方法时:

Intent intent_anotherApp = new Intent();
    intent_anotherApp.setComponent(new ComponentName("com.hfade.appA", "com.hfade.appA.ListActivity"));

作为挂起活动中的 arg 不起作用。

不像我预期的那样工作(没有错误,我猜问题是没有“startActivity()”) 所以我知道如何打开 com.hfade.appA.MainActivity 但不知道:com.hfade.appA.ListActivity

你能帮帮我吗?提前谢谢你

【问题讨论】:

【参考方案1】:

呵呵,我找到了解决办法——

Intent intent_anotherApp = new Intent(Intent.ACTION_MAIN);
intent_anotherApp.setComponent(new ComponentName("com.hfade.appA", "com.hfade.appA.ListActivity"));

所以它是关于 Intent.ACTION_MAIN 作为新 Intent 的 arg。

【讨论】:

以上是关于从另一个应用程序启动不是主要活动的主要内容,如果未能解决你的问题,请参考以下文章

从另一个活动重新创建/重新启动活动

Android:从另一个活动中注销 Facebook

从另一个活动返回后应用程序未恢复捆绑包

使用 Action.SEND 从另一个应用程序接收到隐式意图时显示错误的活动

在另一个活动中停止从另一个服务启动的服务?

我可以从通知中启动对话活动,使其显示在我的应用程序窗口上而不是空白背景上吗?