简繁字体的转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简繁字体的转换相关的知识,希望对你有一定的参考价值。
android的简繁体转换很简单只要调用一个jar包就可以了,在网上也有介绍,这边就自己记录下了。
首先在项目的libs库里面添加jcc-bate-0.7.3.jar,然后就可以开始写相应的代码了。
TextView s2t = (TextView) findViewById(R.id.textView1); TextView t2s = (TextView) findViewById(R.id.textView2); try { jChineseConvertor = JChineseConvertor.getInstance(); } catch (IOException e) { e.printStackTrace(); } // 简体转换成繁体 String string = jChineseConvertor.s2t("娱乐休闲"); s2t.setText(string); // 繁体转换成简体 String string1 = jChineseConvertor.t2s(string); t2s.setText(string1);
简繁体的转换就完成了。
以上是关于简繁字体的转换的主要内容,如果未能解决你的问题,请参考以下文章