【问题标题】:How add text Seekbar thumb?如何添加文本 Seekbar 拇指?
【发布时间】:2014-09-15 10:32:17
【问题描述】:
【问题讨论】:
标签:
android
seekbar
custom-view
android-seekbar
【解决方案1】:
我已经用这个函数解决了;
public BitmapDrawable writeOnDrawable(Bitmap thumb, String text) {
Bitmap bm = thumb.copy(Bitmap.Config.ARGB_8888, true);
Paint paint = new Paint();
paint.setStyle(Style.FILL);
paint.setColor(Color.parseColor("#288ca0"));
paint.setTextSize(bm.getHeight() / 3);
paint.setTypeface(type);
Canvas canvas = new Canvas(bm);
canvas.drawText(text , bm.getWidth() / 4 - bm.getWidth()/10,
bm.getHeight() / 2 + bm.getHeight() / 10, paint);
return new BitmapDrawable(bm);
}