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"/>
Try this to show @ in your edit text :
android:text=”\@dmin123″