是的,我有這樣的錯誤在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
,但沒有結果要麼
謝謝你!我只是從Facebook的SDK教程複製這個,所以我有點失望。我不得不承認,我不知道什麼是「應用程序」聲明...會只要我能 –
BTW,爲什麼你覺得我的project.properties文件有兩個方向的斜槓在它的初始狀態接受的答案嗎? –
哦,我明白了。爲了使用應用程序:is_cropped屬性,我需要告訴XML從 –