我正在尝试使用我的标题和描述从我的应用程序共享Play商店URL,但我没有获得共享数据上的应用程序的内容和标题。请任何人帮助我。
这是我的代码,
if (ShareDialog.canShow(ShareLinkContent.class)) {
ShareLinkContent linkContent = new ShareLinkContent.Builder()
.setContentTitle("My Application")
.setContentDescription("Check out My Allpication.")
.setContentUrl(Uri.parse("https://play.google.com/store/apps/details?id=com.facebook.katana"))
.build();
shareDialog.show(linkContent);
} else {
Toast.makeText(ActivityOptions.this, "There is no Facebook application available.", Toast.LENGTH_LONG).show();
}