我正在编写一个 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());