xml レイアウト ファイルでは、xmlns は既に定義されていますが、コンパイル時に次のエラーが発生します: 属性のリソース識別子が見つかりません。何故ですか?ありがとう
Facebook サイトhttps://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/のFacebook dev チュートリアルに従っています。レイアウト ファイルは次のとおりです。
<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>