If I trace out the screen.width with my DroidX native browser, I first receive 320 as expected, but on subsequent reloads (without changing orientation) I receive 800... why is this?
If I trace out the screen.width with my DroidX native browser, I first receive 320 as expected, but on subsequent reloads (without changing orientation) I receive 800... why is this?
Share Improve this question asked Feb 16, 2011 at 19:22 workedworked 5,8805 gold badges56 silver badges79 bronze badges 2- What do you mean by "trace out"? – Cheryl Simon Commented Feb 16, 2011 at 21:36
- 1 Can no one confirm this? Is it a bug? – worked Commented Feb 25, 2011 at 12:39
1 Answer
Reset to default 7It is an Android bug. Sometimes when page first loads the window.screen.width and window.screen.height are wrong. You can try to make a timeout and then run your code.
setTimeout(YourFunction, 200);
Also see here android issue