显示自己的Cordova / PhoneGap App,用户打开任何共享对话框

时间:2015-06-19 10:04:29

标签: android ios angularjs cordova ionic

Cordova中是否存在任何设置或任何插件,我的应用程序在共享对话框中列出,例如Facebook,Twitter或闪烁,当用户打开共享对话框或想要分享内容时显示给用户。

查看图片以供参考,我想在此对话框中显示我的应用,当用户点击分享时,我的应用应接受该共享内容。

enter image description here

1 个答案:

答案 0 :(得分:1)

将此添加到您的config.xml

  <gap:config-file platform="android" parent="/manifest/application" mode="add" >
<activity android:name="urlscheme1" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
</intent-filter>
</activity>
</gap:config-file>