编译我的应用程序时出现以下错误:
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,但我怀疑这是错误的原因。任何想法我做错了什么?