AndroidのJavaでPaintのテキストを太字にする方法
方法1: Typefaceを使用する方法// Typefaceを作成 Typeface boldTypeface = Typeface.defaultFromStyle(Typeface.BOLD); // Paintオブジェクトを作成 Paint paint = new Paint(); paint.setTypeface(boldTypeface); // テキストを描画する canvas.drawText("太字のテキスト", x, y, paint);>>More