如何确保用户实际共享应用数据?

时间:2016-11-06 16:47:19

标签: java android android-intent share

我希望在我的应用中进行分享,并希望每3个分享一次我的用户奖励。如何确保他实际上共享我的应用程序,并且不仅仅打开"分享通过"并关闭它?

我可以将一个Listner设置为sharingIntent吗?

 Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
    sharingIntent.setType("text/plain");
    String shareBody = "app's link here";
    sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Check out my app");
    sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
    startActivity(Intent.createChooser(sharingIntent, "Share via"));
    SharingValue++;
    saveData();

0 个答案:

没有答案