在此行找到多个注释: - 错误:找不到包

时间:2015-08-11 09:53:12

标签: android xml facebook

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:facebook="http://schemas.android.com/apk/res-auto"
      android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    android:padding="20dp" >

    <com.facebook.login.widget.LoginButton

        android:id="@+id/fb_login_button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        facebook:confirm_logout="false"
        facebook:fetch_user_info="true" />

    <TextView
        android:id="@+id/user_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_margin="10dp"
        android:textSize="18sp" />

    <Button
        android:id="@+id/update_status"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="update_status" />

    <Button
        android:id="@+id/post_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="post_image" />

</LinearLayout>

这是我的脸部登录页面我收到错误:

- error: No resource identifier found for attribute 'fetch_user_info' in package 
'com.example.facebookexmaple' 
 - error: No resource identifier found for attribute 'confirm_logout' in package 
 'com.example.facebookexmaple'

at <com.facebook.login.widget.LoginButton  

虽然我已经添加了库和Facebook名称空间,但请告诉我如何修复它。

1 个答案:

答案 0 :(得分:1)

首先,添加xmlns:fb="http://schemas.android.com/apk/res-auto"代替xmlns:facebook="http://schemas.android.com/apk/res-auto"

如需演示,请查看Getting Started with the Facebook SDK for Android