0
我在我的android應用程序中使用unicode字符。當我想他們是外部資源,我創建的字符串數組中的strings.xml如下如何把字符串數組中的Unicode字符作爲外部資源
<string-array name="geez_first_chars">
<item >"\u1200"</item>
<item >"\u1208"</item>
<item >"\u1210"</item>
<item >"\u1218"</item>
....
</string-array>
我訪問了它們,然後在我的Java代碼如下:
String fidels[] = getResources().getStringArray(R.array.geez_first_chars);
但是,有運行錯誤,請幫我解決這個問題。
發佈錯誤的logcat輸出。 – 2013-02-24 10:49:38