繰り返し画像でlinearlayoutの背景を設定したい。私は2つのファイルを持っています。
main_bg.xml
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bg"
android:tileMode="repeat" />
およびmain.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/main_bg"
>
そして、私はdrawableフォルダにbg.png画像を持っています。
しかし、Eclipseはエラー
エラーがあると言います:エラー:指定された名前に一致するリソースが見つかりません(「背景」で値「@drawable/main_bg」)。
修正方法は?