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

Java源码

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 }

你可能感兴趣的:(java,exception,manager)