Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The word @drawable is not correctly spelled

I have a styles.xml file with the following in it:

<style name="Theme.MyApp" parent="android:style/Theme.Holo">
    <item name="android:actionBarStyle">@style/ActionBar</item>
</style>

<style name="ActionBar" parent="android:style/Widget.Holo.ActionBar">
    <item name="android:background">@drawable/actionbar_b</item>
</style>

I get the error The @drawable is not correctly spelled'.actionbar_b' file is on its place.

like image 361
Eugene Avatar asked Aug 08 '11 18:08

Eugene


1 Answers

in Eclipse go to Window/preferences/Editors/text editors/spelling and remove check from "Enable check spelling"

like image 170
cigun Avatar answered Nov 01 '22 14:11

cigun