gpt4 book ai didi

android - 未找到样式 TextAppearance.Holo

转载 作者:太空狗 更新时间:2023-10-29 14:30:11 29 4
gpt4 key购买 nike

我构建这个应用程序已有一段时间了,在我今天更新到最新的平台工具之前,主题没有遇到任何问题。现在它告诉我

error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Medium.Inverse'.
error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Medium'.
error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Large'.

error messages

这是我的 styles.xml 中导致问题的部分,但正如我所说,它几个月没有改变,直到今天都运行良好!

<style name="BD.TextAppearance.Medium.Inverse" parent="@android:style/TextAppearance.Holo.Light.Medium.Inverse">
<item name="android:textColor">#FFF</item>
<item name="android:textStyle">bold</item>
</style>

<style name="BD.TextAppearance.Medium" parent="@android:style/TextAppearance.Holo.Light.Medium">
<item name="android:textColor">#666666</item>
<item name="android:textSize">16sp</item>
</style>

<style name="BD.TextAppearance.Large" parent="@android:style/TextAppearance.Holo.Light.Large">
<item name="android:textColor">#666666</item>
<item name="android:textSize">20sp</item>
</style>

-= 编辑 =-我开始摆弄这些值,结果发现它确实找到了这些样式:

<style name="BD.TextAppearance" parent="@android:style/TextAppearance">
<item name="android:textColor">#FFF</item>
<item name="android:textStyle">bold</item>
</style>

<style name="BD.TextAppearance.Medium.Inverse" parent="@android:style/TextAppearance.Medium.Inverse">
<item name="android:textColor">#FFF</item>
<item name="android:textStyle">bold</item>
</style>

但不是这些:

<style name="BD.TextAppearance" parent="@android:style/TextAppearance.Holo">
<item name="android:textColor">#FFF</item>
<item name="android:textStyle">bold</item>
</style>

<style name="BD.TextAppearance.Medium.Inverse" parent="@android:style/TextAppearance.Light.Medium.Inverse">
<item name="android:textColor">#FFF</item>
<item name="android:textStyle">bold</item>
</style>

最佳答案

我仍然不知道为什么会这样,但我找到了解决方法。我从 Android SDK 复制了 styles.xml 文件并将其粘贴到我的项目中,并删除了所有我没有使用的样式。我更改了所有“父”声明以包含“@android:”前缀并在“?”之后添加了“android:”对于所有属性。这允许它编译和运行。但就像我说的,我真的很想首先找出它坏掉的原因!

关于android - 未找到样式 TextAppearance.Holo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7557224/

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