2

Theme.Sherlock.NoActionBar在我的应用程序上使用 android,它为我提供了一个轻量级的主题。有什么方法可以让我的应用程序使用深色主题?

<activity
        android:name=".App"
        android:label="@string/app_name"
        android:configChanges="orientation|screenSize|screenLayout"
        android:theme="@style/Theme.Sherlock.NoActionBar" >

任何帮助将不胜感激。

4

2 回答 2

6

我记得深色主题是 actionbarsherlock 的默认主题,只需使用

android:theme="@style/Theme.Sherlock"

或者

android:theme="@style/Theme.Sherlock.NoActionBar"

如果不需要操作栏

于 2013-02-06T21:19:00.043 回答
3

尝试创建样式然后使用它

<style name="ActionBarHomeItem" parent="Theme.Sherlock">
        <item name="android:windowActionBar">false</item>
    </style>

<activity
        android:name=".App"
        android:label="@string/app_name"
        android:configChanges="orientation|screenSize|screenLayout"
        android:theme="@style/ActionBarHomeItem" >
于 2013-02-06T21:08:03.997 回答