我最近正在尝试学习Android开发,我遇到了两个问题。他们是
Failed to convert @drawable/backround.png into a drawable
Couldn't resolve resource @drawable/backround.png
Heres My XML File
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/backround.png"
android:layout_height="fill_parent"
android:orientation="vertical" >
</LinearLayout>
答案 0 :(得分:7)
Restart Eclipse
(不幸的是)问题将会消失。
(Android Studio: File --> Invalidate caches/Restart... )
这个问题:Android: failed to convert @drawable/picture into a drawable
答案 1 :(得分:5)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/backround"
android:layout_height="fill_parent"
android:orientation="vertical" > </LinearLayout>
这里不需要扩展。只提一下没有扩展名的名字
答案 2 :(得分:0)
将 background.png 替换为背景
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/backround"
android:layout_height="fill_parent"
android:orientation="vertical" >
</LinearLayout>
答案 3 :(得分:0)
更改
android:background="@drawable/backround.png"
与
android:background="@drawable/backround"
并确保您的可绘制文件夹中存在背景图片