Sharing Content On FaceBook Android

后端 未结 3 405
醉梦人生
醉梦人生 2020-12-28 11:06

I use intent and Action.SEND for sharing my custom message on social networks like WhatsApp , twitter, Facebook and GMail. Everything is ok on Gmail and other applications e

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-28 11:28

    Using Intent in Android, you can share only a link without text:

    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("text/plain");
    intent.putExtra(Intent.EXTRA_TEXT, "http://www.google.ca");
    startActivity(Intent.createChooser(intent, "Share with"));
    

    It'll work. If you want to share text and link , you have to use the Facebook SDK for Android: https://github.com/facebook/facebook-android-sdk

提交回复
热议问题