Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
497 views
in Technique[技术] by (71.8m points)

android - How to define special characters in array implementing Java application?

I am implementing input method related application in Android. In this application I'm using special characters and symbols

Array.xml

 <item>a'</item>

a' is not reading remaining all numeric and alphabets are reading. How can implement special symbols reading scenario?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

Please log in or register to answer this question.

1 Answer

0 votes
by (71.8m points)

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 this link for more characters...

EDIT1 03-12-2013

Above links seems broken now. Here are some other links

Link1 Link2 Link3 Link4 Hope this will help.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share

755k questions

754k answers

5 comments

53.3k users

...