我希望在我的应用中进行分享,并希望每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();