Android - Share on Facebook, Twitter, Mail, ecc

后端 未结 13 2475
眼角桃花
眼角桃花 2020-11-27 09:43

I need to develop an app that has the share function. I have to share on Facebook, twitter, email and maybe other services.

How can I do this? There a library on th

13条回答
  •  南方客
    南方客 (楼主)
    2020-11-27 10:24

    String message = "This is testing."
    Intent shareText = new Intent(Intent.ACTION_SEND);
    shareText .setType("text/plain");
    shareText .putExtra(Intent.EXTRA_TEXT, message);
    
    startActivity(Intent.createChooser(shareText , "Title of the dialog the system will open"));
    

提交回复
热议问题