Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error: Error retrieving parent for item: No resource found that matches the given name 'android:Theme.Holo'

Tags:

android

themes

Error: No resource found that matches the given name: attr 'listViewStyle'

I have tried everything from here. Nothing is working.

I have imported API demos to the eclipse of API version 15 and also giving error in src files like "The import com.example.android.apis.R cannot be resolved"

Help me out please.

I have error wit this in values-v11/styles.xml file

<style name="ThemeHolo" parent="android:Theme.Holo"> </style>  <!-- For API level 11 or later, the Holo theme is available and we prefer that. --> <style name="ThemeHoloDialog" parent="android:Theme.Holo.Dialog"> </style>  <!-- For API level 11 or later, we can use the magical DialogWhenLarge theme. --> <style name="ThemeDialogWhenLarge" parent="android:style/Theme.Holo.DialogWhenLarge"> </style> 

and also I have an error in values/styles.xml "error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.Holo.Light.NoActionBar'." in following lines

<style name="BadTheme" parent="@android:style/Theme.Holo.Light.NoActionBar"> </style> 
like image 252
Charan Pai Avatar asked Sep 06 '12 07:09

Charan Pai


Video Answer


2 Answers

You can refer to the Holo theme as parent="@android:style/Theme.Holo", but to use the Holo Theme you have to set the build target in your manifest to API level 11 or later, also you have to put the style.xml file containing the Holo theme to the folder values-v11

like image 126
Adam Monos Avatar answered Sep 29 '22 20:09

Adam Monos


Just delete the HOLO as this resource is not available for that API Level

        parent="android:Theme.Light" 
like image 22
Rajendra Avatar answered Sep 29 '22 20:09

Rajendra