如何通过Android应用程序在Google Plus中发布图片和链接网址?
作者:互联网
我已经尝试过从服务器发布图像并从Google应用程序和Android应用程序中都链接URL.但是我不能同时在Google Plus中发布图像.
我已经尝试过发布此代码.
Intent shareIntent = new
PlusShare.Builder(GooglePlusActivity.this)
.setType("text/plain")
.setText("Welcome to the Google+ platform....")
.setContentDeepLinkId("/cheesecake/lemon",
"Lemon Cheesecake recipe",
"A tasty recipe for making lemon cheesecake.",
Uri.parse("http://www.onedigital.mx/ww3/wp-content/uploads/2012/02/android-420x315.jpg"))
.setContentUrl(Uri.parse("https://developers.google.com/+/"))
.getIntent();`
在此代码中,我仅发布了图片,未发布URL..显示URl,但不可点击.
有人给我解决我的问题的方法..
解决方法:
您需要google-play-services_lib库项目.只需将其导入添加到项目中的工作区中即可.
您可以在… / android-sdk-linux_x86 / extras / google / google_google_play_services / libproject中找到它
并使用此代码通过google-plus应用程序在google-plus上共享.
final int errorCode = GooglePlusUtil.checkGooglePlusApp(mActivity);
if (errorCode == GooglePlusUtil.SUCCESS) {
// Invoke the ACTION_SEND intent to share to Google+ with attribution.
Intent shareIntent = ShareCompat.IntentBuilder.from(mActivity)
.setText("")
.setType("text/plain")
.getIntent()
.setPackage("com.google.android.apps.plus");
startActivity(shareIntent);
} else {
Toast.makeText(mActivity, "Google plus not installed", Toast.LENGTH_LONG).show();
}
标签:google-play-services,google-plus,android 来源: https://codeday.me/bug/20191030/1968577.html