在Android设备中显示带有unicode字符的柬埔寨货币符号

时间:2014-02-08 05:21:58

标签: android unicode textview symbols

我想在我的Android设备中显示柬埔寨货币符号

TextView mTextView;

String getSymbol="\u17DB";
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 mTextView=(TextView)findViewById(R.id.txt);
  mTextView.setText("Symbol "+getSymbol);
 }

当我在2.3设备上运行上面的代码时,它给我输出像 enter image description here

当我在4.0设备上运行上面的代码时,它给我输出像 enter image description here

所以任何想法我怎么能单独呢?

0 个答案:

没有答案