具有不同主题的应用

时间:2012-04-13 07:30:34

标签: android themes

  

可能重复:
  How to change current Theme at runtime in Android

我想在PreferenceScreen中为我的整个应用设置一个主题。是否有任何方法可以对所有活动进行全局化(在使用setTheme的onCreate中没有明确说明)?

更新:我知道清单条目主题,但我怎么能在运行时机会它?

3 个答案:

答案 0 :(得分:1)

<application android:theme="@style/CustomTheme">

答案 1 :(得分:0)

此问题在另一篇帖子here

中有解释

答案 2 :(得分:0)

我很确定您可以通过在清单文件中设置应用主题来设置它。 您想将以下内容添加到您的应用程序元素中。

android:theme="@android:style/Theme.Holo.Light"

将所提及的主题切换为您要使用的主题。

以下是应用元素的Android文档链接:http://developer.android.com/guide/topics/manifest/application-element.html