我想用重复图像设置线性布局的背景。我有 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”)。
如何解决?