gpt4 book ai didi

android - 如何在 Android 中更改菜单主题

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:16:55 25 4
gpt4 key购买 nike

我的 android 应用程序使用以下样式:

<style name="AppTheme"
parent="android:style/Theme.Holo" ></style>

它在 AndroidManifest.xml 文件中分配给整个应用程序:

<application
android:theme="@style/AppTheme"
[...]

使用这种风格,菜单看起来像这样:

enter image description here

但是,如果我改用浅色主题:

<style name="AppTheme"
parent="android:style/Theme.Light" ></style>

菜单看起来像这样:

enter image description here

我的问题是:

如何为整个应用程序应用 HOLO 主题,而只为菜单使用 LIGHT 主题??

我只想应用 LIGHT 主题的对话框“样式”,并为其他所有内容应用 HOLO 主题。

最佳答案

我相信你正在寻找这个:

<application
android:theme="@style/theme.holo.light>

关于android - 如何在 Android 中更改菜单主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12076863/

25 4 0