0

在 commonwares (4.0) 书中,它展示了如何继承 android 样式......

<style name="activated" parent="android:Theme.Holo">

但我得到“没有找到具有该名称的资源。我在.. http://developer.android.com/guide/topics/ui/themes.html找到文档 说所有可以继承的样式都在我的 R .style 文件 - 但我没有,也不知道如何获得。

该链接还有两个链接显示可用的样式和主题,但两个链接都已损坏。

那么如何继承各种android风格和主题呢?谢谢,加里

4

1 回答 1

0

But I get "no resource found with that name

As zapi indicates, that style is new to API Level 11. You will notice that the resource in question is from a res/values-v11/ directory, so that resource will only be used on API Level 11 or higher. There is another definition of the activated style resource in res/values/ that does not inherit from Theme.Holo.

于 2012-08-23T23:20:42.683 回答