我想接收从其他应用程序共享的信息。
为此,我正在尝试使用插件 WebIntent:https ://github.com/phonegap/phonegap-plugins/tree/master/Android/WebIntent
使用 Phonegap 2.5.0
在 AndroidManifest.xml 中(在分享部分展示我的应用程序)
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
在 index.html 中
document.addEventListener('deviceready', onDeviceready, true);
function onDeviceready() {
window.plugins.webintent.getUri(function(url) {
if(url !== "") {
// url is the url the intent was launched with
alert (url);
}
});
}
var url,返回值为空。
插件 src/com/borismus/webintent/WebIntent.java
在 res/xml/config.xml
</plugins>
....
....
<plugin name="WebIntent" value="com.borismus.webintent.WebIntent" />
</plugins>
谢谢!!!