通过 Facebook、短信和电子邮件共享您的 android 应用程序的程序或如何编码?
一个简单的问题,却让我很困惑!!!
是那个 FB-android SDk ......等等吗???
谢谢!!
通过 Facebook、短信和电子邮件共享您的 android 应用程序的程序或如何编码?
一个简单的问题,却让我很困惑!!!
是那个 FB-android SDk ......等等吗???
谢谢!!
将此添加到该共享按钮上
String shareBody = "You app link for google play";
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, getResources().getString(R.string.share_using)));