TextAppearance_Holo_Large - 未找到资源

时间:2013-11-10 15:36:35

标签: android android-layout

编译我的应用时,我收到以下错误:

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,但我怀疑这是错误的原因。我有什么想法我做错了吗?

1 个答案:

答案 0 :(得分: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>