Eclipse Will Not Recognize Quotation Marks?
This was my code:
<android:id="@+id/carrotsmileanim></android:id>
I fixed it because it was missing a quotation mark, but now eclipse won't recognize the quotations nor t开发者_JAVA技巧he "@" sign. What can I do to fix this?
What are you trying to do? That's not the way you declare IDs... this is how it works:
<Element android:id="@+id/carrotsmileanim"> </Element>
Notice that Element is usually a View
(TextView
, Button
, etc.)
精彩评论