【发布时间】:2014-12-25 00:01:13
【问题描述】:
我无法通过 whatsapp 发送短信和图片。要么,我能够 在没有任何消息的情况下启动该特定联系人聊天线程,或者我只能发送消息但无法打开该特定联系人聊天线程。
我关注了以下链接: http://www.whatsapp.com/faq/en/android/28000012
Sending message through WhatsApp
Send Whatsapp message to specific contact
但没有成功:(
谁能帮我解决这个问题。 如何在Android Intent的帮助下通过whatsapp从自己的应用程序发送短信和图像?
【问题讨论】:
-
你不能同时发送。但是你可以分别发送文本和图像。!!
-
@Dhina ,我正在使用 Intent 但没有运气......??没有将图像发送给 whats 应用程序中的特定朋友。注意 Image 和 Number of friend 是通过 intent 传递的。这个怎么做?? .. {_}
-
@Aarastu 我也遇到了同样的问题,这里是我的问题的链接stackoverflow.com/questions/30036992/… :(
-
IntentsharingIntent = new Intent(android.content.Intent.ACTION_SEND); sharedIntent.setType("text/plain"); sharedIntent.putExtra(Intent.EXTRA_TEXT, your_text_here); startActivity(Intent.createChooser(sharingIntent, "分享方式")); }