I call getHeight and getWidth in a custom view in the onDraw()
method. getHeight()
returns 1,073,742,549
and getWidth()
returns 1,073,742,304
. However, when I look at the display metrics for the screen's height and width, I get 800 and 480 respectively. What is getHeight and getWidth returning?
I'm getting the dimensions of my view so I can choose the dimensions of a bitmap that'll go in the view.
Thanks.