0

我找到了一个教程,展示了如何通过添加到布局文件来更改stylea 。Buttonandroid:background="@drawable/btn_green"xml

我试过添加:

<Button
    android:id="@+id/my_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello" 
    android:background="@drawable/btn_green"/>

xml我在文件中收到错误消息error: Error: No resource found that matches the given name (at 'background' with value '@drawable/btn_green').

教程说我需要import the Backgrounds project into Eclipse by choosing the Import option from the File menu

我已经尝试过,File > Import但找不到与背景有关的任何内容。

谁能建议我需要做什么?

4

3 回答 3

0

检查天气名称为“btn_green”的图像是否在 drawable-*dpi 文件夹中

于 2012-06-30T14:50:17.407 回答
0

在可绘制文件夹中的 btn_green 中添加文件刷新项目并清理和构建

于 2012-06-30T14:50:47.327 回答
0

你有这个是因为文件夹Error: No resource found that matches the given name中没有带有名称btn_green的图像。drawable

而且我认为您希望单击Button. 为此,您需要在文件中使用selector属性。xml为此,请阅读这篇文章。

于 2012-08-29T06:27:55.153 回答