When I tried to hard code a string starts with @ as the value for android:text attribute, eclipse says

error: Error: No resource type specified (at 'text' with value '@dmin123').

how can I avoid this?

<EditText android:id="@+id/password_input" 
    android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:singleLine="true" android:fadingEdge="horizontal"
    android:password="true" android:text="@dmin123"/>
link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Try this to show @ in your edit text :

android:text="\@dmin123"

link|improve this answer
accepting this answer, continue answering! – Mithun Jan 6 at 5:54
feedback

You need to escape @ symbol. try this: android:text="\@dmin123"

link|improve this answer
feedback

Please try this,

android:text="\@dmin123"/>

you need to add forward '/' before the '@' character. Just like Escape Sequence in C Language. I have tried it in my code & it is working fine. Showing me Command with @ in text.

link|improve this answer
100%, +1 for you – Mithun Jan 6 at 5:52
I'm afraid to accept Arjun Rampal's hot answers :-) – Mithun Jan 6 at 5:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.