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 quotiations nor the @ sign! What do I do?!?
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 quotiations nor the @ sign! What do I do?!?
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.)