Android中字体加粗,采用在文字控件添加属性android:textStyle=”bold”,但是无法使中文加粗,中文加粗采用以下方法:
TextView textView = (TextView)findViewById(R.id.textView);
TextPaint textPaint = textView.getPaint();
textPaint.setFakeBoldText(true);
Android中字体加粗,采用在文字控件添加属性android:textStyle=”bold”,但是无法使中文加粗,中文加粗采用以下方法:
TextView textView = (TextView)findViewById(R.id.textView);
TextPaint textPaint = textView.getPaint();
textPaint.setFakeBoldText(true);