Android : Facebook 分享 link 内容
Android : Facebook share link with content
我正在尝试与 android 中的内容共享 link。我想在 Android eclipse 中使用它。
我在 Android Studio 中试过,它工作得很好。
compile '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
中导入
谁能帮帮我
ohk 解决了你的问题
如果你想要 .jar 文件作为 eclipse 的非编译库,你可以使用
https://developers.facebook.com/docs/android/downloads
你可以使用
https://origincache.facebook.com/developers/resources/?id=facebook-android-sdk-4.10.1.zip
或更高版本的 eclipse
我正在尝试与 android 中的内容共享 link。我想在 Android eclipse 中使用它。
我在 Android Studio 中试过,它工作得很好。
compile '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
中导入谁能帮帮我
ohk 解决了你的问题
如果你想要 .jar 文件作为 eclipse 的非编译库,你可以使用
https://developers.facebook.com/docs/android/downloads
你可以使用 https://origincache.facebook.com/developers/resources/?id=facebook-android-sdk-4.10.1.zip 或更高版本的 eclipse