我正在翻譯一些文本意大利,一個我在此線路上的strings.xml因爲L'utente的「符號的XML的得到了一個錯誤:如何把這個符號:「'」(簡單的引號)放到android的XML文件中?
<string name="usernotexist">L'utente non esiste</string>
如何解決這個錯誤?
我正在翻譯一些文本意大利,一個我在此線路上的strings.xml因爲L'utente的「符號的XML的得到了一個錯誤:如何把這個符號:「'」(簡單的引號)放到android的XML文件中?
<string name="usernotexist">L'utente non esiste</string>
如何解決這個錯誤?
試試這個
<string name="dialog">L\'tutente non esiste </string>
`\`字符不是您在XML中執行轉義的方式。 – Quentin 2011-02-09 12:45:09
<string name="good_example">"This'll work"</string>
<string name="good_example_2">This\'ll also work</string>
從官方資料爲準:http://developer.android.com/guide/topics/resources/string-resource.html
什麼是錯誤訊息?我懷疑是編碼問題,但很難說沒有更多細節。 – Quentin 2011-02-09 12:44:53