在 xml 布局文件中,已经定义了 xmlns,但在编译时出现此错误:找不到属性的资源标识符。这是为什么?谢谢
我正在关注 Facebook 网站https://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/上的 Facebook 开发教程,布局文件如下:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<com.facebook.widget.ProfilePictureView
android:id="@+id/profilepic"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1"
app:preset_size="large" app:is_cropped="true"
/>
</ScrollView>