我有一个 listView,它由 SQLite 数据库中的数据填充。我的一个字段是一个带有完整圆圈的 unicode 字符的标记:\u25cf 或空心圆圈:\u25cb。当我在文本字段中使用硬编码字符串时,这两个字符都能正确显示。但是,在我的 listView 中,我看到的是文本编码而不是字符。
有谁知道这是为什么...以及如何显示 unicode 字符?
谢谢。
更新:
插入代码是
private void loadRecords() throws IOException {
final Resources resources = mContext.getResources();
InputStream inputStream = resources.openRawResource(R.raw.records);
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
try {
String line;
while ((line = reader.readLine()) != null) {
String[] strings = TextUtils.split(line, ",");
if (strings.length <2) continue;
long id = addRecord(strings[0].trim(),strings[1].trim(),strings[2].trim(),strings[3].trim(),
strings[4].trim(),strings[5].trim(),strings[6].trim());
}
} finally {
reader.close();
}
}
资源是一个csv文件,其中一行是例如
primaryKey,name,surname,address,phone,email,\u25CB