I want to have some simple text in textView..
Like...(android & java)
means I exactly require \"and\" symbol in textView
If I\'m pro
Use this :
< for <
> for >
& for &
Example:
<string name="lessthan"> < teste ></string>
<string name="link"> Puzzles & code </string>
The layout files are just xml and the & symbol is not allowed by itself.
You will need to use & instead of &
This will work fine
<string name="contest_giveaways" formatted="false">Contests & Giveaways</string>