在Android中为Intent.ACTION_SEND选项添加sms选项

时间:2015-10-19 15:40:36

标签: android android-intent sms share

我知道我可以用

发送短信
Intent smsIntent = new Intent(Intent.ACTION_VIEW);

分享
Intent sendIntent = new Intent(Intent.ACTION_SEND);

但是当我想分享时,我没有短信选择。

enter image description here

有没有办法在Intent.ACTION_SEND中包含SMS选项?

1 个答案:

答案 0 :(得分:0)

找到答案。

我错了类型 sendIntent.setType("text/html"); 当我改变类型 sendIntent.setType("text/plain");然后所有选项都可用。