设置我的应用程序的主题

时间:2013-08-10 22:12:03

标签: android colors themes android-actionbar

在values-v14文件夹中的styles.xml文件中(我的应用程序是API 16+,所以我不太担心values-v11和values文件夹),我有这一行:

<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">

在我的班上,我有以下几行:

ActionBar actionBar = getActionBar();
actionBar.setBackgroundDrawable(new ColorDrawable(Color.WHITE));
actionBar.setTitle("TEXT");

不幸的是,结果是我在白色背景上有一行白色的文字(几乎变得不可见)。我瞄准在白色背景的黑文本。我尝试使用setTitleColor(Color.BLACK);,但这不会改变文字颜色。

我也试过写parent="android:Theme.Holo.Light.LightActionBar",但似乎并不存在。我试过写parent="android:Theme.Holo.Light.ActionBar",但这似乎不存在。我试过写parent="android:Theme.Holo.Light"但是,虽然存在,但它不会改变文本颜色。

那么我应该在这里使用的正确组合是什么?

另一方面,我有一个溢出菜单图标(3个小垂直方块)也表现出相同的问题,它是白色的,我希望它是通常在浅色背景上看到的典型灰色。

修改

<resources>
    <!--
        Base application theme for API 14+. This theme completely replaces
        AppBaseTheme from BOTH res/values/styles.xml and
        res/values-v11/styles.xml on API 14+ devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Holo.Light">
            <!-- API 14 theme customizations can go here. -->
    </style>
</resources>

0 个答案:

没有答案