In my Android app, I have an AdView:
AdView adView = new AdView(this, AdSize.BANNER, MY_BANNER_UNIT_ID);
How do I get the size of this in pixels?
An adView is 320x50, and if the view does not fit, then it is not displayed.
http://code.google.com/mobile/ads/docs/android/intermediate.html
As mentioned in the answer by Flynn, an adView is 320 dp by 50 dp. To convert 50 dp to pixels, do
(and similarly for 320 dp).