我找到了一个教程,展示了如何通过添加到布局文件来更改style
a 。Button
android: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
但找不到与背景有关的任何内容。
谁能建议我需要做什么?