Sharing URL to Facebook, Twitter and email in Android?

前端 未结 7 1187
野趣味
野趣味 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:54

    You can try this...

    private void shareTextUrl() {
            Intent share = new Intent(android.content.Intent.ACTION_SEND);
            share.setType("text/plain");
            share.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
    
            share.putExtra(Intent.EXTRA_SUBJECT, "Title Of The Post");
            share.putExtra(Intent.EXTRA_TEXT, "");
    
            startActivity(Intent.createChooser(share, "Share text to..."));
        }
    

提交回复
热议问题