Android 台灣中文網
標題:
针对中文仿“粗体”。。。。
[打印本頁]
作者:
ybqaa
時間:
2015-1-15 20:19
標題:
针对中文仿“粗体”。。。。
针对中文仿“粗体”
//针对Android字型的中文字体问题
chinese=newTextView(this);
chinese.setText("中文粗体显示效果");
//设置字体颜色
chinese.setTextColor(Color.MAGENTA);
chinese.setTextSize(20.0f);
chinese.setTypeface(Typeface.DEFAULT_BOLD, Typeface.BOLD);
//使用TextPaint的仿“粗体”设置setFakeBoldText为true。目前还无法支持仿“斜体”方法
tp=chinese.getPaint();
tp.setFakeBoldText(true);
linearLayout.addView(chinese,newLinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
歡迎光臨 Android 台灣中文網 (https://apk.tw/)
Powered by Discuz! X3.1