Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.text.Layout;

import android.text.TextPaint;

import android.widget.TextView;

public class Main {

    public static int getTextLen(TextView textView) {
        TextPaint paint = textView.getPaint();
        return (int) Layout.getDesiredWidth(textView.getText().toString(), 0, textView.getText().length(), paint);
    }
}