4

我在线解析 xml 时遇到错误(错误)。我声明了我的 android 和 facebook 命名空间,所以我不知道为什么......

 <?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"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        >  

(error) <com.facebook.widget.LoginButton 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="500dp"
        facebook:confirm_logout="false"
        android:id="@+id/login_button"
        facebook:fetch_user_info="true"
        android:layout_centerHorizontal="true"
                    />
    </RelativeLayout> 
4

4 回答 4

4

您可以添加此前缀标签:xmlns:facebook="http://schemas.android.com/apk/res-auto"

于 2014-04-23T14:42:12.937 回答
3

请查看将 facebook sdk 设置为库项目时的区别

成功 在此处输入图像描述

失败的 在此处输入图像描述

于 2013-03-01T05:33:26.913 回答
2

可能还有其他一些解决方案,但我建议您必须选中此复选框

在此处输入图像描述

在将Facebook SDK库项目导入工作区时,我也遇到了这样的问题,至少这对我有用,希望对你也有用!

于 2013-03-01T05:41:46.027 回答
-1

你应该在你的 facebook 按钮中添加这个:

<com.facebook.widget.LoginButton 
     xmlns:fb="http://schemas.android.com/apk/res-auto"
     android:layout_width="wrap_content"
        .....
于 2013-12-11T17:28:27.527 回答