I have the following problem with libgdx displaying Cyrillic. I give an example:
this works:
System.out.println("абцдеф");
but it shows nothing:
field = new TextField("абцдеф", style);
And tried without success.
try {
mmm = new String(t.getBytes(), "UTF-8");
} catch (UnsupportedEncodingException e) {
// Will it ever be thrown?
}
field = new TextField(mmm, style);
I'll be glad if someone has a solution, many, many will be grateful.