我在我的应用程序中创建了一个菜单,看起来是白色背景。我希望它以黑色背景的颜色主题来看。我必须更改代码才能获得它?我已经在样式中声明了这个:
<style name="AppBaseTheme" parent="android:Theme.Holo">
修改 我不想要黑色背景。我想要许多应用程序拥有的黑暗主题。
我当前的颜色菜单
我的颜色菜单
<style name="AppBaseTheme" parent="android:Theme.Holo">
</style>
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:textColorPrimary">#ff000000</item>
</style>
答案 0 :(得分:1)
你可以从这样的Android主题获得:
parent="android:Theme.Holo.Dark" to parent="android:Theme.Holo"
根据自定义,您可以这样设置:
<resources>
...
<style name="MyCustomTheme" parent="android:style/Theme">
<item name="android:textColorPrimary">#ffff0000</item>
</style>
...
</resources>
答案 1 :(得分:0)
您可以在黑色中添加名为“android:background”的样式。
答案 2 :(得分:0)
更好的选择你必须选择最适合你的黑色主题所以你将把它添加到你的主要文件中..
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black"
>
然后,您将在您的应用程序中获得所需的深黑色主题