Android共享内容功能

时间:2012-01-30 12:41:47

标签: android android-intent share

我想实现像相机应用正在使用的共享功能。

final Intent sendIntent = new Intent(android.content.Intent.ACTION_SEND);    
sendIntent.setType("image/jpeg"); 
startActivity(Intent.createChooser(sendIntent , "Send .."));

效果非常好我得到了与相机应用程序相同的应用程序,比如facebook和peep。现在我不想共享图像而只想共享一些文本,所以我改为

sendIntent.setType("plain/text"); 

我现在可以分享的是GMail。所以facebook和peep没有注册到plain / text,当然可能是,但根本没有任何意义。我宁愿假设我必须设置其他选项。

有人有想法吗?

感谢。

1 个答案:

答案 0 :(得分:0)

您需要将类型设置为“text / plain”:

shareIntent.setType("text/plain");