嘿伙计们,我是 Android 开发的新手,我正在努力改变我的 ActionBar 的背景。在我的themes.xml
文件中添加以下内容时res->values
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@drawable/actionbar_background</item>
</style>
我收到此错误消息:
error: Error: No resource found that matches the given name (at 'android:background' with value '@drawable/
actionbar_background').
我不确定为什么我会收到此消息并且可以使用手。
大卫