Sharing URL to Facebook, Twitter and email in Android?

前端 未结 7 1195
野趣味
野趣味 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 16:45

    You can use also ShareCompat class from support library.

    ShareCompat.IntentBuilder.from(activity)
        .setType("text/plain")
        .setChooserTitle("Share URL")
        .setText("http://www.url.com")
        .startChooser();
    

    https://developer.android.com/reference/android/support/v4/app/ShareCompat.html

提交回复
热议问题