Sto provando a creare il progetto Android che utilizza la libreria appcompat_v7.appcompat_v7: Errore nel recupero del genitore per l'articolo: Nessuna risorsa trovata che corrisponde al nome specificato
Per questo, ho creato il mio progetto tramite Eclipse -> Nuovo progetto di esempio Android e aggiunto il mio styles.xml personalizzato e poi aggiunto la libreria appcompat_v7 Progetto -> Proprietà -> Android -> Aggiungi.
Ma sto ottenendo i seguenti errori in appcompat_v7/res/Valori/styles_base.xml Quando compilo il mio progetto:
appcompat_v7/res/values/styles_base.xml:24: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Base'.
appcompat_v7/res/values/styles_base.xml:84: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Base'.
appcompat_v7/res/values/styles_base.xml:166: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Base'.
appcompat_v7/res/values/styles_base.xml:243: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Base'.
appcompat_v7/res/values/styles_base.xml:261: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Base.DropDownItem'.
appcompat_v7/res/values/styles_base.xml:319: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Base'.
appcompat_v7/res/values/styles_base.xml:323: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Light.Base'.
appcompat_v7/res/values/styles_base.xml:347: error: Error retrieving parent for item: No resource found that matches the given name 'TextAppearance.AppCompat.Base'.
appcompat_v7/res/values/styles_base.xml:391: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Base'.
appcompat_v7/res/values/themes_base.xml:189: error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Base'.
Nel mio manifesto ho dichiarato il 14 come il mio minSdkVersion e 19 come targetSdkVersion:
AndroidManifest.xml:
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
che cosa posso fare per risolvere questi errori e costruire il mio progetto?