How to define special characters in an array that implements a Java application?

I am implementing an application related to input method in Android. In this application I use special characters and characters

Array.xml

 <item>a'</item>

a 'does not read the remaining all numbers and alphabets read. How to implement a script to read special characters?

+5
source share
1 answer

in xml replace this character '

Some other xml characters

1. & - &amp; 
2. < - &lt;
3. > - &gt;
4. " - &quot;
5. ' - &#39;
6. { - &#123;
7. } - &#125;
8. @ - &#64;

ex:   a' Code  =   a&#39; Code

see link for more characters ...

EDIT1 12-12-2013

Above the links, it seems now broken. Here are some other links.

Link1 Link2 Link3 Link4 I hope this helps.

+7
source

All Articles