我正在尝试为我的android项目添加背景。这是代码。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:backround="@drawable/awesome_face">
</RelativeLayout>
我把所有内容拼写正确但是当我在保存后进入我的图形布局并且没有显示任何内容时。此外,在我清理项目后,我现在在
上出错了<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
说“没有为包''android'中的属性背景找到资源标识符”任何人都有想法?
答案 0 :(得分:0)
就像Christophe V所说,你的背景标签缺少G。
android:backGround="@drawable/awesome_face">