gpt4 book ai didi

android - 如何从我的应用程序打开其他应用程序的特定 Activity ?

转载 作者:太空狗 更新时间:2023-10-29 13:53:59 24 4
gpt4 key购买 nike

我正在开发一个可以打开其他应用程序的应用程序,它运行良好,但现在我需要打开一个特定的 Activity (或应用程序的一部分),我不知道它是否可能。

在这种情况下,我想从 Google Cardboard 应用程序打开街景 View 。我无法弄清楚或找到这样做的方法。

这是我使用的 Intent (有效但不能完全完成任务):

public void actionOpenCardboard(View view) {
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.google.samples.apps.cardboarddemo");
if (launchIntent != null) {
startActivity(launchIntent);
}
}

最佳答案

您可以这样启动Activity:

Intent intent = new Intent();
intent.setComponent(new ComponentName("com.example", "com.example.MyExampleActivity"));
startActivity(intent);

此外,您可能需要将 android:exported="true" 添加到您调用上述代码的 Activity 的 list 中。

关于android - 如何从我的应用程序打开其他应用程序的特定 Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41723359/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com