1

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

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>

我检查了我的清单文件,并将 SDK 设置为:

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

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

我正在使用 Android Studio,但我怀疑这是错误的原因。任何想法我做错了什么?

4

1 回答 1

2

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>
于 2013-11-10T15:48:14.530 回答