Android examples for User Interface:TextView Value
get Text Width in TextView
//package com.java2s; import android.content.Context; import android.graphics.Paint; import android.widget.TextView; public class Main { public static float getTextWidth(String text, float textSize, Context context) {//w ww .ja v a 2s . c o m TextView textView = new TextView(context); textView.setTextSize(textSize); Paint paint = textView.getPaint(); return paint.measureText(text); } }