Java tutorial
//package com.java2s; //License from project: Apache License import android.graphics.Paint; import android.widget.TextView; public class Main { private static int getFontHeight(TextView tv) { Paint paint = new Paint(); paint.setTextSize(tv.getTextSize()); Paint.FontMetrics fm = paint.getFontMetrics(); return (int) Math.ceil(fm.bottom - fm.top); } }