0

我想把背景图片放到我的应用程序中。

我将图像保存在 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”)。

我是否将图像粘贴到错误的文件夹中?

还是代码错了??

请帮我。

4

4 回答 4

2

试试这个,将 capture.png 放在任何可绘制的文件夹中

android:src="@drawable/capture"
于 2013-09-03T08:15:23.503 回答
1

android:src="@drawable/capture"

放这个。

于 2013-09-03T08:48:01.477 回答
1

改变

android:src="res/drawable-hdpi/capture.PNG"

android:src="@drawable/capture"
于 2013-09-03T08:21:23.910 回答
1

代替

android:src="res/drawable-hdpi/capture.PNG"

android:src="@drawable/capture"

希望能帮助到你。

于 2013-09-03T08:13:49.107 回答