1. 程式人生 > >TextView字型加粗

TextView字型加粗

中文字型加粗

text = (TextView) view.findViewById(R.id.mine_text);

text.setText("加粗");

TextPaint tp = text.getPaint();

tp.setFakeBoldText(true);

在xml佈局中去掉android:textStyle="bold"