2

我正在为 android 实现基于 phonegap 的应用程序,并想从 phonegap 应用程序内部调用愤怒的小鸟游戏。经过我在这里这里的快速研究后,我有以下几点:

/src/com.borismus.webintent.WebIntent.java

/www/webintent.js

安卓清单:

<activity
    android:name=".MainActivity"
    android:label="@string/app_name"
    android:configChanges="orientation">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
        <intent-filter>
            <data android:scheme="com.rovio.angrybirds" />
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>
</activity>

main.js

function onClickStartAngry() {
    window.plugins.webintent.startActivity({
        action: WebIntent.ACTION_VIEW,
        url: 'have_no_idea'},
        function() {};
    function() {alert('Failed to open AngryBirds App')};
});
}

我被困在这里,have_no_idea应该写什么url:。有什么帮助吗?或者还有另一种方法可以从 phonegap 调用其他应用程序?

4

1 回答 1

2

这个java代码应该可以工作

Intent LaunchIntent = this.cordova.getActivity().getPackageManager().getLaunchIntentForPackage("com.rovio.angrybirds");
this.cordova.getActivity().startActivity(LaunchIntent);

或尝试使用这 2 个插件中的任何一个来打开应用程序

https://github.com/lampaa/org.apache.cordova.startapp

https://github.com/dmedvinsky/cordova-startapp

于 2014-02-03T13:03:01.500 回答