I recently tried to learn how to develop Android, and I ran into two problems. They
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>
source share