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

I have a view made up of tablelayout, tablrows and textviews to look like a grid. I need to get the height and width of this grid. The methods getheight() and getwidth() always return 0. This happens when I format the grid dynamically or usie an xml version.

Could someone please tell how to retrieve the dimensions for a view?


Here is my test program I used in Debug to check the results:

import android.app.Activity;
import android.os.Bundle;
import android.widget.TableLayout;
import android.widget.TextView;

public class appwig extends Activity {  
    @Override
    public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.maindemo);  //<- includes the grid called "board"
      int vh = 0;   
      int vw = 0;

      //Test-1 used the xml layout (which is displayed on the screen):
      TableLayout tl = (TableLayout) findViewById(R.id.board);  
      tl = (TableLayout) findViewById(R.id.board);
      vh = tl.getHeight();     //<- getHeight returned 0, Why?  
      vw = tl.getWidth();     //<- getWidth returned 0, Why?   

      //Test-2 used a simple dynamically generated view:        
      TextView tv = new TextView(this);
      tv.setHeight(20);
      tv.setWidth(20);
      vh = tv.getHeight();    //<- getHeight returned 0, Why?       
      vw = tv.getWidth();    //<- getWidth returned 0, Why?

    } //eof method
} //eof class
share|improve this question
instead of using getWidth/Height use getMeasuredWidth/Height after the layout is applied to the activity. – bhups Nov 10 '10 at 7:35
Guys, all one has to do is call getHeight() and getWidth() after the Activity lifecycle has asked the views to measure themselves, in other words, do this kind of stuff in onResume() and that's it. You shouldn't expect a not-yet-laid-out object to know its dimensions, that's the whole trick. No need for the magic suggested below. – Class Stacker Mar 23 at 10:40

10 Answers

up vote 135 down vote
+200

I believe the OP is long gone, but in case this answer is able to help future searchers, I thought I'd post a solution that I have found. I have added this code into my onCreate() method:

EDITED: 07/05/11 to include code from comments:

final TextView tv = (TextView)findViewById(R.id.image_test);
ViewTreeObserver vto = tv.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

    @Override
    public void onGlobalLayout() {
        LayerDrawable ld = (LayerDrawable)tv.getBackground();
        ld.setLayerInset(1, 0, tv.getHeight() / 2, 0, 0);
        ViewTreeObserver obs = tv.getViewTreeObserver();
        obs.removeGlobalOnLayoutListener(this);
    }

});

First I get a final reference to my TextView (to access in the onGlobalLayout() method). Next, I get the ViewTreeObserver from my TextView, and add an OnGlobalLayoutListener, overriding onGLobalLayout (there does not seem to be a superclass method to invoke here...) and adding my code which requires knowing the measurements of the view into this listener. All works as expected for me, so I hope that this is able to help.

share|improve this answer
13  
@George Bailey: One thing I've recently seen someone else post (I haven't tested it myself, so YMMV) to overcome the multiple calls was (within onGlobalLayout()): tv.getViewTreeObserver().removeGlobalOnLayoutListener(this); that way the listener should be removed after the first time it occurs. – kcoppock Jan 20 '11 at 17:39
3  
I want to help back too. You may need to do something like : mView.getViewTreeObserver().removeGlobalOnLayoutListener(globalLayoutListener); if you want to resize your view only once. Hope this help – Henry Sou May 19 '11 at 2:07
2  
The question is very old, but using addOnLayoutChangeListener works as well! :) – F.X. Aug 20 '12 at 6:57
3  
Also, note that since API 16, you need: if(android.os.Build.VERSION.SDK_INT>=16){ view.getViewTreeObserver().removeOnGlobalLayoutListener(this); }else{ view.getViewTreeObserver().removeGlobalOnLayoutListener(this); } – Edison Oct 29 '12 at 0:59
2  
@Jonny keep in mind this answer was posted 2 years ago before the deprecation. :) – kcoppock Nov 7 '12 at 14:35
show 14 more comments

I'll just add an alternative solution, override your activity's onWindowFocusChanged method and read them from there.

@Override
public void onWindowFocusChanged (boolean hasFocus) {
        // the height will be set at this point
        int height = myEverySoTallView.getMeasuredHeight(); 
}
share|improve this answer
1  
This works and is also the simplest solution among the answers. – Arne Evertsson Mar 6 '12 at 16:35
2  
To quote the documentation, "This is the best indicator of whether this activity is visible to the user." – Cameron Lowell Palmer Apr 11 '12 at 8:51
I still get a value of 0 here as well. – KKendall Oct 24 '12 at 22:50
This doesn't work in case of Fragments for that you have to use ViewTreeObserver. – Mihir 2 days ago

Use the View's post method like this

post(new Runnable() {   
    @Override
    public void run() {
        Log.d(TAG, "width " + MyView.this.getMeasuredWidth());
        }
    });
share|improve this answer
1  
That works, but really, no discussion of why? Btw, this works because the runnable doesn't get run until the layout has occurred. – Norman H Feb 29 '12 at 21:42
Unfortunately, this does not work on an ICS tablet. Just FYI. – bk138 Nov 6 '12 at 21:48

You are trying to get width and height of an elements, that weren't drawn yet.

If you use debug and stop at some point, you'll see, that your device screen is still empty, that's because your elements weren't drawn yet, so you can't get width and height of something, that doesn't yet exist.

And, I might be wrong, but setWidth is not always respected, Layout lays out it's children and decides how to measure them (calling child.measure()), so If you set setWidth, you are not guaranteed to get this width after element will be drawn.

What you need, is to user getMeasuredWidth() (the most recent measure of your View) somwhere after the view was actually drawn.

Look into Activity lifecycle for finding the best moment.

http://developer.android.com/reference/android/app/Activity.html#ActivityLifecycle

I believe a good practise is to use OnGlobalLayoutListener like this:

yourView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            if (!mMeasured) {
                // Here your view is already layed out and measured for the first time
                mMeasured = true; // Some optional flag to mark, that we already got the sizes
            }
        }
    });

You can place this code directly in onCreate, and it will be invoked when views will be layed out

share|improve this answer
Unfortunately it is not working in OnResume as well. Final dimensions are set somewhere after OnResume call, at least in emulator. – jki Dec 2 '11 at 20:32
It is not working in OnResume on a physical device either – Addi Apr 18 '12 at 20:04
THANKS, it really helps me adjust my view layout parameters after adding view to it and measuring height/width – Diljeet May 11 at 18:30

i guess this is what you need to look at........... use onSizeChanged() of your view........ here is an EXTENDED code snippet on how to use onSizeChanged() to get your layout's or view's height and width dynamically http://syedrakibalhasan.blogspot.com/2011/02/how-to-get-width-and-height-dimensions.html

share|improve this answer

I tried to use onGlobalLayout() to do some custom formatting of a TextView, but as @George Bailey noticed, onGlobalLayout() is indeed called twice: once on the initial layout path, and second time after modifying the text. View.onSizeChanged() works better for me because if I modify the text there, the method is called only once (during the layout pass). This required sub-classing of TextView, but on API Level 11+ View. addOnLayoutChangeListener() can be used to avoid sub-classing. One more thing, in order to get correct width of the view in View.onSizeChanged(), the layout_width should be set to match_parent, not wrap_content.

share|improve this answer

Are you trying to get sizes in a constructor, or any other method that is run BEFORE you get the actual picture?

You won't be getting any dimensions before all components are actually measured (since your xml doesn't know about your display size, parents positions and whatever)

Try getting values after onSizeChanged() (though it can be called with zero), or just simply waiting when you'll get an actual image.

share|improve this answer
I updated my original question and code to be clearer. Thank you. – greenset Nov 10 '10 at 16:09

You should rather look at View lifecycle: http://developer.android.com/reference/android/view/View.html Generally you should not know width and height for sure until your activity comes to onResume state.

share|improve this answer

ViewTreeObserver and onWindowFocusChanged are not so necessary at all.

If you inflate the TextView as layout and/or put some content in it and set LayoutParams then you can use getMeasuredHeight and getMeasuredWidth.

BUT you have to be careful with LinearLayouts (maybe also other ViewGroups...). The issue there is, that you can get the Width and Height after onWindowFocusChanged but if you try to add some views in it, then you can't get that information until everything have been drawn. I was trying to add multiple TextViews to LinearLayouts to mimic a FlowLayout (wrapping style) and so couldn't use Listeners. Once the process is started, it should continue synchronously. So in such case, you might want to keep the Width in a variable to use it later, as during adding views to layout, you might need it.

share|improve this answer

Use getMeasuredWidth() and getMeasuredHeight() for your view.

Developer guide: View

share|improve this answer
7  
I tried these methods, but still only received 0. – greenset Nov 10 '10 at 16:08
As stated before these methods only return a valid result efter the size has been meassured. Within an Activity this holds true when the method onWindowFocusChanged os called. – slott Apr 2 at 5:44

Your Answer

 
discard

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