マップ上に太字のビットマップアイコンを描画したいです。画像にテキストを書き込むスニペットがあります:
_Bitmap icon = BitmapFactory.decodeResource(PropertyMapList.this.getResources(),
R.drawable.location_mark);
TextPaint Paint = new TextPaint();
Paint.setColor(Color.BLACK);
Paint.setTextSize(14);
Paint.setFakeBoldText(true);
//Paint.setTextAlign(Align.CENTER);
Bitmap copy = icon.copy(Bitmap.Config.ARGB_8888, true);
Canvas canvas = new Canvas(copy);
//canvas.drawText(jsonObj.getString("district_name"), 5, canvas.getHeight()/2, Paint);
String districtName = jsonObj.getString("district_name");
StaticLayout layout = new StaticLayout((districtName.length()>25 ? districtName.substring(0, 24)+"..":districtName)+"\n"+jsonObj.getString("total_properties"), Paint, canvas.getWidth()-10,Layout.Alignment.ALIGN_CENTER, 1.3f, 0, false);
canvas.translate(5, canvas.getHeight()/2); //position the text
layout.draw(canvas);
_
setFakeBoldText(true)
が機能しません。ビットマップに描かれたテキストを太字にしたいと思います。
setTypeface
オブジェクトでPaint
メソッドを使用して、太字スタイルがオンになっているフォントを設定します。
Paint.setTypeface(Typeface.create(Typeface.DEFAULT, Typeface.BOLD));
カスタムフォントの場合:
Typeface typeface = Typeface.create(Typeface.createFromAsset(mContext.getAssets(), "fonts/bangla/bensen_handwriting.ttf"), Typeface.BOLD);
通常のフォントの場合:
Typeface typeface = Typeface.create(Typeface.DEFAULT, Typeface.BOLD);
その後
Paint.setTypeface(typeface);