Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for a way to get size of a custom dialog. I went through this question, but the only answer given is pretty useless, because if I try mDialog.getWindow().getAttributes().height; it only returns -2, which is a constant for WRAP_CONTENT attribute which I set to dialog. How can I get the size of it. I want to know the siye for the background image.

share|improve this question
what dialog exactly do you use? – Korniltsev Anatoly Nov 22 '12 at 15:14
public class ControlOverlay extends Dialog, so just Dialog – slezadav Nov 22 '12 at 15:29

2 Answers

up vote 2 down vote accepted

Actually, in Android it doesn't work like in iOS - you can't get the size of the View itself, what you can do, though, is to ask for the size of the ROOT layout of that view.

e.g.:

myDialog.this.findViewById(R.id.dialog_root_layout).getHeight());

share|improve this answer
1  
Although it returns the size of the dialog without a header, it is exactly what I needed. – slezadav Nov 22 '12 at 15:32

Give it a try:

mDialog.getWindow().getDecorView().getHeight() 
share|improve this answer
1  
Great works really well, Michal's answer is better for my case though. – slezadav Nov 22 '12 at 15:32
you're welcome ;) – Korniltsev Anatoly Nov 22 '12 at 15:40

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.