Escaping single quotes in resource xml for Android Escaping single quotes in resource xml for Android xml xml

Escaping single quotes in resource xml for Android


You can use \' in your string resources.


Use double quotes:

<string name="mystring_id">"'Hello'"</string>


you need to escape the apostrophe by using

\ before '

etc didn't should be like

didn\'t