我正在尝试将Android SDK中的Facebook SDK用于我的应用程序的Share Content方向。
我在Facebook Docs上使用以下代码:
ShareLinkContent content = new ShareLinkContent.Builder()
.setContentUrl(Uri.parse("http://www.focusoutdistractions.com/"))
.build();
ShareButton shareButton = (ShareButton) rootView.findViewById(R.id.ibtn_twshare);
shareButton.setShareContent(content);
问题 - 在XML文件中,我需要将 com.facebook.share.widget.Sharebutton 添加到XML中,但它无法识别。
com.facebook.share.widget.Sharebutton 是否为此Sharebutton添加了正确的XML元素?
答案 0 :(得分:5)
是的,com.facebook.share.widget.ShareButton
是正确的XML元素。它不会通过预览XML布局呈现,但不要担心它。该应用程序将编译没有问题,运行应用程序将正确显示它。
<com.facebook.share.widget.ShareButton
android:id="@+id/shareButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp" />
答案 1 :(得分:4)
在主布局中添加此行
xmlns:facebook="http://schemas.android.com/apk/res-auto"
像这样
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:facebook="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >