Sencha触摸分享按钮

时间:2014-04-21 09:47:12

标签: cordova sencha-touch sencha-touch-2

我在Sencha touch建立一个画廊App。所有的工作都完成了。我打算为所有图片添加分享按钮。我在很多应用程序中都看到了这个功能。当他们点击图像时,它将列出手机中安装的所有网络应用程序(Whats App,Hike,Telegram等)。通过选择Whats App,图像将发布到什么应用程序。但我不确定如何实现此功能。 Sencha touch是否有任何共享插件可用。请提供一些指导以实现此功能。对不起,我有很多代码要分享 enter image description here

{
                xtype:'image',
                cls:'winreologosmall',
                listeners: {
                    tap: function() {
                        try {
                            // will open share option 
                        } catch (err) {
                            // catch error
                        }
                    }
                }

}

2 个答案:

答案 0 :(得分:2)

如果您使用cordova打包(您需要这种功能),请尝试使用此cordova插件:

https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin

答案 1 :(得分:1)

您可以轻松使用第三方插件

Social Networking Plugin

您可以轻松地使用上面的插件,只需按一下按钮即可在应用程序上分享图片 -

<button onclick="window.plugins.socialsharing.shareViaWhatsApp('here path of your pic', null, null, console.log('share ok'), 
function(errormsg){
     alert(errormsg)
})">
msg via WhatsApp (with errcallback)
</button>

参考上面的插件,你会得到它的想法和例子。