Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the number of lines of a text view

textView.setText("Test line 1 Test line 2 Test line 3 Test line 4 Test line 5.............")

textView.getLineCount(); always returns zero

Then I have also tried:

ViewTreeObserver vto = this.textView.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

    @Override
    public void onGlobalLayout() {
        ViewTreeObserver obs = textView.getViewTreeObserver();
        obs.removeGlobalOnLayoutListener(this);
        System.out.println(": " + textView.getLineCount());

    }
});

It returns the exact output.

But this works only for a static layout.

When I am inflating the layout dynamically this doesn't work anymore.

How could I find the number of line in a TextView?

share|improve this question
yes i know, i have already mentioned that not i face this problem while inflating layout dynamically. – MAC Aug 20 '12 at 12:16
I think [this is helpful for you.][1] [1]: stackoverflow.com/questions/2239356/… – Hardik Aug 20 '12 at 12:18
@hardikjoshi:thax already tried this, but didn't work. – MAC Aug 20 '12 at 15:05

1 Answer

As mentioned in this post,

getLineCount() will give you the correct number of lines only after a layout pass.

It means that you need to render the TextView first before invoking the getLineCount() method.

share|improve this answer
thax for ans but still have problem – MAC Aug 20 '12 at 15:05
this is correct. You must not be adding the listener correctly. Add the OnGlobalLayoutListener directly to the TextView instance and not the parent layout. – user123321 Dec 27 '12 at 20:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.