当我在Android Things中使用中文时,文本变得乱码

时间:2016-12-24 07:52:38

标签: android-things

enter image description here

当我在Android Things设备上使用中文字符时,文字会出现乱码。

2 个答案:

答案 0 :(得分:0)

您必须选择支持中文字符的字体:

TextView myText = (TextView) findViewById(R.id.myText);
myText.setTypeface(Typeface.createFromAsset(getAssets(),
        "DroidSans.ttf"));

DroidSans.tff 文件需要放在资产文件夹中。

答案 1 :(得分:0)

我这样解决。

TextView txtHello = (TextView)findViewById(R.id.txt_hello);
txtHello.setTypeface(ResourceCompat.getFont(context, R.font.nanum);

资源

font file location