Replace "-" with an "en dash" character (–, &;#8211;)
2014. 1. 26. 04:15ㆍPrograming/Debugging
Solution
- 간단합니다. 그냥 String을 <![CDATA[ ]]>로 감싸 주시면 됩니다.
- You just wrap your values in <![CDATA[ ]]>.
<string name="bottom_address">010–43XX-59XX</string>
To
<string name="bottom_address"><![CDATA[010–43XX-59XX]]> </string>
'Programing > Debugging' 카테고리의 다른 글
ANR 로그 분석 방법 - /data/anr/traces.txt (0) | 2014.05.19 |
---|---|
Can't create handler inside thread that has not called Looper.prepare() (0) | 2014.05.04 |
How to fix "[Accessibility] Missing content Description attribute on image" (0) | 2014.01.26 |
java.lang.RuntimeException - Attempted to access a cursor after it has been closed (0) | 2014.01.13 |
android.view.windowleaked (0) | 2014.01.10 |