读书人

代码加载字体以及应用asset中的文件

发布时间: 2012-09-20 09:36:50 作者: rapoo

代码加载字体以及使用asset中的文件

AssetManager manager=this.getAssets();try{manager.open("tahoma.ttf");TextView tv=(TextView)this.findViewById(R.id.testMe);tv.setTypeface(Typeface.createFromAsset(manager, "tahoma.ttf"));tv.setTextSize(50f);tv.setText(ArabicUtilities.reshape("adsdads ????? ??? asdad"));}catch(Exception ex){//TODO}

?

读书人网 >移动开发

热点推荐