Sharing URL to Facebook, Twitter and email in Android?

前端 未结 7 1186
野趣味
野趣味 2021-01-30 16:16

Is there anything similar to getsharekit.com for Android? It allows to share URL\'s to social networking sites. Is there anything similar to this or do I need to code separately

相关标签:
7条回答
  • 2021-01-30 17:08

    For me this works just fine:

    startActivity(Intent.createChooser(new Intent(Intent.ACTION_SEND,
        Uri.parse("http://...")),"Share URL"));// share url is on your own
    
    0 讨论(0)
提交回复
热议问题