Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - getting the width of a button which is set to wrap_content

I am trying to get the width of a button whose android:layout_width is set to wrap_content. When I try to do that in onCreate() using getMeasuredWidth(), I get a value of zero because I think the view is not ready yet.

When should I get the width then? Is there any listener I can hook to when view is done initializing?

like image 838
jeffreyveon Avatar asked Oct 15 '11 05:10

jeffreyveon


1 Answers

You can add a tree observer to the layout. This should return the correct width and height. onCreate is called before the layout of the child views are done. So the width and height is not calculated yet. To get the height and width. Put this on the onCreate method

LinearLayout layout = (LinearLayout)findViewById(R.id.YOUD VIEW ID); 
ViewTreeObserver vto = layout.getViewTreeObserver();  
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {  
    @Override  
    public void onGlobalLayout() {  
        this.layout.getViewTreeObserver().removeGlobalOnLayoutListener(this);  
        int width  = layout.getMeasuredWidth(); 
        int height = layout.getMeasuredHeight();  

    }  
}); 
like image 154
blessanm86 Avatar answered Sep 22 '22 20:09

blessanm86