アプリをコンパイルすると、次のエラーが発生します。
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 を使用していますが、それがエラーの原因であるとは思えません。私が間違っていることは何ですか?