Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

@android:style/Theme_Holo resource not found

Tags:

android

Being in Eclipse editing the AndroidManifest.xml the compiler shows me suggestion to add @android:style/Theme_Holo. But when compiling I get the message:

Error: No resource found that matches the given name (at 'theme' with value '@android:style/Theme_Holo')

Is there something wrong with my settings?

like image 302
Eugene Avatar asked May 29 '11 16:05

Eugene


2 Answers

Introduced in Honeycomb.

android:theme="@android:style/Theme.Holo"
like image 95
rochdev Avatar answered Oct 25 '22 21:10

rochdev


The holographic theme is new in Honeycomb (SDK level 11). If your project level is set below that, the theme won't be found. (Also note that the graphical layout editor can be set to a higher level than your project setting.)

like image 38
Ted Hopp Avatar answered Oct 25 '22 23:10

Ted Hopp