Replace "-" with an "en dash" character (–, &;#8211;)

2014. 1. 26. 04:15Programing/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>