Android XML string 'et cetera' encode?

android, android-xml

Solution

As the error says, you must replace `...` by `…` :

<string name="txt_urbeautiful">What&#8230;</string>

Problem

This gives me an error: ``` <string name="txt_urbeautiful">What...</string> Replace "..." with ellipsis character (…, &&;#8230;) ``` So how do I encode 'et cetera...' in XML?

Original source