Here you can find the source of getSizeForString(String text, TextView textView)
public static int getSizeForString(String text, TextView textView)
//package com.java2s; //License from project: Open Source License import android.graphics.Paint; import android.graphics.Rect; import android.widget.TextView; public class Main { public static int getSizeForString(String text, TextView textView) { Rect bounds = new Rect(); Paint textPaint = textView.getPaint(); textPaint.getTextBounds(text, 0, text.length(), bounds); int width = bounds.width(); return width; }/*from w ww .ja va2s . com*/ }