03-29-2011 02:57 PM
Hello everyone.
I have an app that runs on the simulator 0.9.3, but I've tried the same application in the simulator 0.9.4 and the application looks as if the screen was 800x600 px. Why?
Does anyone have any explanation?.
I think that has changed the SDK version and the version of the simulator. : (
My app is a webwork.
Thanks, kind regards.
Solved! Go to Solution.
03-30-2011 07:35 AM
Hello again.
I do some tests and I have this information:
( Playbook Simulator 0.9.4)
screen.availHeight => 768
screen.availWidth => 1280
( Playbook Simulator 0.9.3)
screen.availHeight => 600
screen.availWidth => 1024
In 0.9.4 Simulator all elements shows bigger than in 0.9.3 simulator.
What's happening?
Thanks, kind regards.
03-30-2011 07:52 AM
Hi There,
There are various threads on this topic.... here is one that may help out:
03-30-2011 09:00 AM
By Including this tag in a <head> has solved font size ,screen height and width problems
Now display is consistant across both the simulators
<meta name="viewport" content= "width=device-width, height=device-height, initial-scale=1.0">
Thanks!