朋友们,
在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);
Run Code Online (Sandbox Code Playgroud)
如何将文本添加到图像标题?