views:

8

answers:

0

Hello.

I'm trying to insert on Sqlite3 texts like 'descripción', and I'm geting on a shell conected to emulator with adb, strange caracters instead of 'ó'.

I'm using the following data to insert:

item.description = "Descripción del juego 1";

And I'm geting:

Descripci|-n del juego 1

I've also tried this:

item.description = new String("Descripción del juego 1".getBytes(), "UTF-8");

And I'm getting the same strange caracter.

What's happening?

Thanks.