Android : Facebook 分享内容链接
Posted
技术标签:
【中文标题】Android : Facebook 分享内容链接【英文标题】:Android : Facebook share link with content 【发布时间】:2016-07-19 04:39:27 【问题描述】:我正在尝试与 android 中的内容共享链接。我想要这个在 Android eclipse 中。
我在 Android Studio 中试过,效果很好。
编译'com.facebook.android:facebook-android-sdk:4.6.0'
if (ShareDialog.canShow(ShareLinkContent.class))
ShareLinkContent linkContent = new ShareLinkContent.Builder()
.setContentTitle("How to share content")
.setImageUrl(Uri.parse("https://www.numetriclabz.com/wp-content/uploads/2015/11/114.png"))
.setContentDescription("simple LinkedIn integration")
.setContentUrl(Uri.parse("https://www.numetriclabz.com/android-linkedin-integration-login-tutorial/"))
.build();
shareDialog.show(linkContent); // Show facebook ShareDialog
这段代码在 Android Studio 中运行良好。
当我在 Eclipse 中尝试这个时,它不起作用。我为 FacebookSDK 库添加了库,但是“ShareLinkContent”没有在 eclipse 中导入
谁能帮帮我
【问题讨论】:
从哪里下载 FacebookSDK 库,版本相同吗?? facebook SDK 4.6.0 现在在“developers.facebook.com/docs/android/downloads”@Vishal Patel 中不可用 【参考方案1】:哦,有你的问题
如果你想要 .jar 文件用于 Eclipse 的非编译库,你可以使用
https://developers.facebook.com/docs/android/downloads
你可以使用 https://origincache.facebook.com/developers/resources/?id=facebook-android-sdk-4.10.1.zip eclipse 或以上版本
【讨论】:
它有 aar 文件。但是如何将aar文件添加到eclipse中@Vishal Patel 我认为有一些插件可用以上是关于Android : Facebook 分享内容链接的主要内容,如果未能解决你的问题,请参考以下文章
Android facebook 4.0.0 分享对话框不分享内容