gpt4 book ai didi

android - TextAppearance_Holo_Large - 未找到资源

转载 作者:行者123 更新时间:2023-11-29 21:28:59 25 4
gpt4 key购买 nike

编译我的应用程序时出现以下错误:

android-apt-compiler: ... \res\values-v14\styles.xml:12: error: 
Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance_Holo_Large.

它提示的代码是:

<style name="Title"  parent="@android:style/TextAppearance_Holo_Large">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">wrap_content</item>
</style>

我检查了 list 文件并将 SDK 设置为:

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="17" />

我相信这允许使用 Holo 主题。

我正在使用 Android Studio,但我怀疑这是导致错误的原因。知道我做错了什么吗?

最佳答案

它是 TextAppearance.Holo.Large 而不是 TextAppearance_Holo_Large。所以像这样改变你的风格:

<style name="Title" parent="@android:style/TextAppearance.Holo.Large">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">wrap_content</item>
</style>

关于android - TextAppearance_Holo_Large - 未找到资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19891578/

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