Android自定义View时获取文字宽高

获取文字宽度:

private int getTextWidth(String text, Paint paint) {
    Rect rect = new Rect(); // 文字所在区域的矩形
    paint.getTextBounds(text, 0, text.length(), rect);
    return rect.width();
}

获取文字高度:

private int getTextHeight(String text, Paint paint) {
    Rect rect = new Rect();
    paint.getTextBounds(text, 0, text.length(), rect);
    return rect.height();
}

你可能感兴趣的:(Android)