我检查了网站上给出的最大解决方案,但仍然无法找到错误并解决了这个问题。请帮我解决这个问题。
这是我的代码
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white"
android:orientation="vertical" >
<LinearLayout
android:xmlns:facebook="http://schemas.android.com/apk/res-auto"
android:id="@+id/fbuserinfo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp" >
<com.facebook.widget.ProfilePictureView
android:id="@+id/user_profile_pic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_horizontal"
facebook:preset_size="small" />
<TextView
android:id="@+id/user_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="@string/facebook_loading"
android:textColor="@color/black"
android:textSize="18sp" />
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:1)
我怀疑这是问题所在:
android:xmlns:facebook="http://schemas.android.com/apk/res-auto"
我希望它只是:
xmlns:facebook="http://schemas.android.com/apk/res-auto"
答案 1 :(得分:0)
更改LinearLayout支票here,
<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:orientation="vertical" >
....