Reputation: 37731
i am translating some text into Italian, an i got an error on this line of the XML of the strings.xml because the ' symbol on L'utente:
<string name="usernotexist">L'utente non esiste</string>
how to solve that error?
Upvotes: 5
Views: 3468
Reputation: 200170
<string name="good_example">"This'll work"</string>
<string name="good_example_2">This\'ll also work</string>
Taken from the official documentation: http://developer.android.com/guide/topics/resources/string-resource.html
Upvotes: 7