友
在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);
如何将文字添加到图片标题?
答案 0 :(得分:5)
@robert我在旧版本中传递这些参数,它只是发送图像但是当我用2.11.432更新我的Whats应用程序版本时现在它显示我的图像和文本作为标题。我注意到In没有在2.11.399或任何旧版本中显示。只是尝试更新你的应用程序,让我知道它的工作与否!你的代码是正确的,只是发送一个额外的文本
share.putExtra(Intent.EXTRA_TEXT,shareBody);
share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(yourFile));