2013-12-15 187 views
1

是的,我有這樣的錯誤在com.facebook.widget.ProfilePictureView - 錯誤:錯誤解析XML:綁定前綴

<com.facebook.widget.ProfilePictureView 

線和這是一個已經被問過無數次的計算器一個問題,每一次它似乎已通過在頂部添加xmlns:fb =「http://schemas.android.com/apk/res-auto」得到解決。嗯,這didnt解決這個問題對我來說,不知道爲什麼:(所以,我該怎麼辦?

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:fb="http://schemas.android.com/apk/res-auto" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_marginTop="20dp" 
    android:gravity="center_horizontal" 
    android:orientation="horizontal" > 

    <com.facebook.widget.ProfilePictureView 
     android:id="@+id/selection_profile_pic" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center" 
     android:gravity="center_horizontal" 
     app:is_cropped="true" 
     facebook:preset_size="small" /> 
</LinearLayout> 

我也試過

xmlns:facebook="http://schemas.android.com/apk/res/com.facebook.samples.profilepicture" 

,但沒有工作,以及

這是我的項目屬性文件:

target=android-18 
android.library=false 
android.library.reference.1=..\\actionbarsherlock 
android.library.reference.2=..\\library 
android.library.reference.3=../facebook-android-sdk-3.6.0/facebook 

試圖將其更改爲

target=android-18 
android.library=false 
android.library.reference.1=..\\actionbarsherlock 
android.library.reference.2=..\\library 
android.library.reference.3=..\\facebook-android-sdk-3.6.0\facebook 

,但沒有結果要麼

enter image description here

回答

2

您的XML兩個錯誤。

1)你沒有申報命名空間 「應用程序」

2)已宣佈該命名空間的xmlns :FB = 「http://schemas.android.com/apk/res-auto」但你是闖民宅它作爲 「臉譜」,即Facebook的:preset_size

您可以通過

1解決這個問題)增加空間聲明 「應用程序」,即的xmlns:程序=「http://schemas.android。 com/apk/res-auto「

2)重命名你的 「FB」 名字空間聲明, 「臉譜」,即的xmlns:Facebook的= 「http://schemas.android.com/apk/res-auto」

+0

謝謝你!我只是從Facebook的SDK教程複製這個,所以我有點失望。我不得不承認,我不知道什麼是「應用程序」聲明...會只要我能 –

+0

BTW,爲什麼你覺得我的project.properties文件有兩個方向的斜槓在它的初始狀態接受的答案嗎? –

+0

哦,我明白了。爲了使用應用程序:is_cropped屬性,我需要告訴XML從 –

相關問題