从我的 Android 应用程序启动 Adob​​e Air 应用程序

发布于 2025-01-07 12:52:07 字数 641 浏览 1 评论 0原文

是否可以从我当前的 Android 应用程序启动 adobe air apk?

我尝试了这段代码,但得到了 ActivityNotFoundException:

            Intent intent = new Intent();
            intent.setAction("air.caarsvcmobile.debug");
            startActivity(intent); 

Manifest:

    <activity
        android:name="caarsvcmobile"
        android:label="CAARS Video Chat" >
        <intent-filter>
            <action android:name="air.caarsvcmobile.debug" />
        </intent-filter>
    </activity>

Is it possible to check package name and class name of an Air app?

It it possible to start an adobe air apk from my current android app?

I tried this code but I got ActivityNotFoundException:

            Intent intent = new Intent();
            intent.setAction("air.caarsvcmobile.debug");
            startActivity(intent); 

Manifest:

    <activity
        android:name="caarsvcmobile"
        android:label="CAARS Video Chat" >
        <intent-filter>
            <action android:name="air.caarsvcmobile.debug" />
        </intent-filter>
    </activity>

Is it possible to check package name and class name of an Air app?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扛刀软妹 2025-01-14 12:52:07

经过一番谷歌搜索后,我找到了问题的解决方案:

由于我只知道 apk 文件的包名称,我可以使用此代码来启动默认启动器活动。

Intent i = new Intent(Intent.ACTION_MAIN);
PackageManager manager = getPackageManager();
i = manager.getLaunchIntentForPackage("air.caarsvcmobile.debug");
i.addCategory(Intent.CATEGORY_LAUNCHER);
startActivity(i);

就这样。我工作得很好。

After some Googling I found the solution of my problem:

Since I only knew the package name of the apk file I could use this code to launch the default launcher activity.

Intent i = new Intent(Intent.ACTION_MAIN);
PackageManager manager = getPackageManager();
i = manager.getLaunchIntentForPackage("air.caarsvcmobile.debug");
i.addCategory(Intent.CATEGORY_LAUNCHER);
startActivity(i);

Thats all. I works fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文