rob*_*ert 7 android caption android-intent whatsapp
朋友们,
在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)
如何将文本添加到图像标题?
@robert我在旧版本中传递这些参数,它只是发送图像但是当我用2.11.432更新我的Whats应用程序版本时现在它显示我的图像和文本作为标题.我注意到In没有在2.11.399或任何旧版本中显示.只是尝试更新你的应用程序,让我知道它的工作与否!你的代码是正确的,只是发送一个额外的文本
share.putExtra(Intent.EXTRA_TEXT,shareBody);
share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(yourFile));
| 归档时间: |
|
| 查看次数: |
4239 次 |
| 最近记录: |