标签: android-things
当我在Android Things设备上使用中文字符时,文字会出现乱码。
答案 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);