I want to have some simple text in textView..
Like...(android & java)
means I exactly require \"and\" symbol in textView
textView
If I\'m pro
Try to set the text by code
TextView tv = (TextView)findViewById(R.id.textview); tv.setText("input");
using Html to encode/decode the text
Html.fromHtml(string)