I have a database that I extract data from to my Android project. There are some strings of text there with the swedish letters å, ä, ö written as : √•=å, √§=ä, √δ=ö. What would be the best way of converting these symbols to the actual letters before I print them on the textview in the app? Is a substitution, like replace √• with å, the way to go? How would that be entered in the query that is now fetching the data:
public Cursor getAlternative1(long categoryid, int questionid) {
final String MY_QUERY = "SELECT question, image, alternative, questionid, correct FROM tbl_question a INNER JOIN tbl_alternative b ON a._id=b.questionid AND b.categoryid=a.categoryid WHERE a.categoryid=? AND a._id=?";
Cursor cursor = mDb.rawQuery(MY_QUERY, new String[]{String.valueOf(categoryid), String.valueOf(questionid)});
if (cursor != null) {
cursor.moveToFirst();
}
return cursor;
}
Thanks for any help!
ListViewas expected. – RivieraKid Feb 15 '11 at 13:28å, you actually insert√•=å- correct? Do you do this as a string literal (say,String text = "√•=å";) or do you let Android handle the UTF-16 encoding (say,String text = "å";)? SinceStrings are already UTF-16 encoded, you shouldn't need to handle the translation yourself - it's already capable of handling accented characters without any extra work on your part. – RivieraKid Feb 15 '11 at 14:29