我想把背景图片放到我的应用程序中。
我将图像保存在 res>drawable-hdpi 文件夹中。
将我的图像视图设置为:
<LinearLayout
android:id="@+id/tv_un"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="10pt"
android:textColor="#444444"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="res/drawable-hdpi/capture.PNG"/>
但是它以在线工具提示的形式给了我错误:
错误:错误:不允许使用字符串类型(在“src”处,值为“res/drawable-hdpi/capture.PNG”)。
我是否将图像粘贴到错误的文件夹中?
还是代码错了??
请帮我。