我正在尝试使用refer/invite friend
选项开发一个应用程序,就像在whats-app中通过电话联系人列表一样。
像这样:
我不明白该怎么做。
答案 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();