Android examples for Graphics:Paint
get Text Full Height with Paint.FontMetrics
//package com.java2s; import android.graphics.Paint; public class Main { public static int getTextFullHeight(Paint paint) { Paint.FontMetrics fm = paint.getFontMetrics(); return (int) Math.ceil(fm.bottom - fm.top); }/*from w w w. j av a 2 s.co m*/ }