如何邀请朋友加入android中的所有联系人

时间:2017-04-21 08:52:35

标签: java android android-contacts

我正在尝试使用refer/invite friend选项开发一个应用程序,就像在whats-app中通过电话联系人列表一样。

像这样:

Screen shot

我不明白该怎么做。

1 个答案:

答案 0 :(得分:1)

您可以使用Android ShareCompat

ShareCompat.IntentBuilder
   .from(this)
   .setText("Check out a new app: https://play.google.com/store/apps/details?id=<your-package>")
   .setType("text/plain")
   .setChooserTitle("Share with your friends")
   .startChooser();