在新的WhatsApp ver 2.11.399上添加标题(android)

朋友们,

在android“whatsapp messenger”版本2.11.399(2014年9月30日)上,可以为共享图像添加标题 (文本描述)。

我通过意向共享图像如下:

Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("image/jpeg");
Uri imageUri = Uri.fromFile(file);
share.putExtra(Intent.EXTRA_STREAM, imageUri);
//share.putExtra(Intent.EXTRA_TEXT, "This is my text to send."); // NOT WORKING
startActivity(share);

我如何将文字添加到图片标题?


@robert我在旧版本中传递这些参数,它只是发送图像,但是当我用2.11.432更新我的Whats应用程序版本时,它现在向我展示图像和文本作为标题。 我注意到In没有在2.11.399或任何旧版本中显示。 只是尝试更新你最新的应用程序,让我知道它是否有用! 你的代码是正确的,只需发送一个额外的文本

share.putExtra(Intent.EXTRA_TEXT,shareBody);
share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(yourFile));

链接地址: http://www.djcxy.com/p/81973.html

上一篇: add caption to image on new whatsapp ver 2.11.399 (android)

下一篇: Setting up PhantomJs with Protractor does not work