Android - Share on Facebook, Twitter, Mail, ecc

后端 未结 13 2309
眼角桃花
眼角桃花 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:39

    This will let you share your app on whats app etc:

    try
                { Intent i = new Intent(Intent.ACTION_SEND);  
                  i.setType("text/plain");
                  i.putExtra(Intent.EXTRA_SUBJECT, "My application name");
                  String sAux = "\nLet me recommend you this application\n\n";
                  sAux = sAux + "https://play.google.com/store/apps/details?id=Orion.Soft \n\n";
                  i.putExtra(Intent.EXTRA_TEXT, sAux);  
                  startActivity(Intent.createChooser(i, "choose one"));
    
    0 讨论(0)
提交回复
热议问题