1
我正在編寫一個android應用程序,並且遇到了編輯文本的問題。 當用戶添加帶有口音的文本(sp:「Nous sommes enété」); 字符串不正確。它將我的口音符號轉換爲utf-8我猜。 我該如何處理它?編輯有重音問題的文本
ps:我的應用程序是一個法國的應用程序,我真的需要使用口音。
我的代碼:
String description = ((EditText) findViewById(id.description)).getText().toString();
Log.i("UTF8",description.toString());
description = description.replace("\n", "");
Log.i("UTF8",description.toString());