gpt4 book ai didi

android - 不同Android SDK版本的不同主题

转载 作者:IT老高 更新时间:2023-10-28 22:03:28 25 4
gpt4 key购买 nike

有没有办法根据安装应用程序的 SDK 版本使用不同的主题?

我问的原因是因为我想一直支持到 SDK 版本 8,但对于那些拥有 ICS 的用户,我希望能够遵循 ICS 的设计标准并使用 Holo 主题。

我可以从 Program different layouts for different versions in android 看到我可以有一个文件夹 values-v14,它将有一个 theme.xml 来覆盖主题声明。但是,如果我引用 Theme.Holo,它将无法编译。我相信这是因为我的 AndroidManifest.xml 中有以下内容

<uses-sdk android:minSdkVersion="8" />
<uses-sdk android:targetSdkVersion="11"/>

任何指针将不胜感激。

更新:-好的,这是我的文件:-AndroidManifest.xml:

<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:name=".Refunder"
android:theme="@style/MainTheme"
>

res/values/themes.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MainTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:typeface">normal</item>
<item name="android:textSize">15sp</item>
</style>
</resources>

res/values-v11/themes.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MainTheme" parent="@android:style/Theme.Holo">
<item name="android:typeface">normal</item>
<item name="android:textSize">15sp</item>
</style>
</resources>

这与我在这里阅读的文章一致:- http://android-developers.blogspot.com/2012/01/holo-everywhere.html

当我这样做时,我在 Eclipse 中得到一个编译错误:-

error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.Holo'

最佳答案

您正在做的事情(使用您的 values-v14 文件夹)是正确的。您只需要更改您的构建目标以允许它编译。 (右键你的项目,选择属性,选择Android,选择Android 14或以上)

确保您没有使用任何比您的 android:minSdkVersion 更强大的功能,因为如果在早期版本的 Android 上使用它会导致强制关闭。

关于android - 不同Android SDK版本的不同主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9140085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com