PhoneGap - 调用另一个应用程序(AngryBirds)

时间:2013-06-05 09:17:13

标签: android cordova native phonegap-plugins webintents

我正在为Android实现基于phonegap的应用程序,并希望从phonegap应用程序内部调用愤怒的小鸟游戏。在我快速研究herehere后,我有以下内容:

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

/www/webintent.js

AndroidManifest:

<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调用其他应用程序吗?

1 个答案:

答案 0 :(得分:1)

这个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