如何获得一个黑暗的ActionBarSherlock主题?

时间:2013-02-06 20:56:46

标签: android actionbarsherlock

我在我的应用程序中使用了android Theme.Sherlock.NoActionBar,它让我看起来很轻松。有没有办法让我的应用程序有一个黑暗的主题?

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

任何帮助都会受到赞赏。

2 个答案:

答案 0 :(得分:6)

我记得黑暗主题是actionbarsherlock的默认主题,只需使用

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

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

如果不需要操作栏

答案 1 :(得分: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" >