リピート画像で背景を設定したい。 私は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"
>
と私は、フォルダの描画可能に画像をbg.pngました。
Eclipseにエラーがあります。
エラー:エラー:指定された名前(「バックグラウンド」の値が「@ drawable/main_bg」)と一致するリソースが見つかりませんでした。
どのように修正するのですか?