12-22-2012 12:34 PM
Hello
I do not know how to configure my html files style. Application elements which look good in Ripple seems to be too large in emulator.
I use the latest Ripple and Gold emulator. What I do wrong? Which result is more accurate? Personally I think it is Ripple. I do not have a DevAlpha so I'm up a gum tree. Should I reconfigure somtehing?
Please check the attached screenshot.
12-22-2012 02:52 PM
Hi,
I suggest you use the simulator to adjust your styles. It uses the same rendering engine as the actual device.
12-22-2012 03:30 PM
Hi Pawel,
as mentioned before: the simulator is your "WYSIWYG" mode...
While Ripple is great for development (and packaging), it still lacks support for the viewport metatag and therefore isn't very accurate. But there are hacky workarounds in order to either adapt Ripple to your desired screen size or by simply using the zoom out function of your browser.
(And: No, I don't blame Ripple for their missing viewport support. I guess it's out of their reach and something missing in Chrome...)
12-22-2012 03:46 PM
But... flags you see on the screenshot are 74x40, I do not change their size, so what is the resolution of simulator? At least it seems that width in Ripple is 720.
12-22-2012 03:50 PM
How do you create your UI? bbUI or your own HTML code?
I recommend checking out this article about BB10 screen resolutions: http://devblog.blackberry.com/2012/08/blackberry-1
12-22-2012 04:44 PM
I have found this issue:
https://github.com/blackberry/BB10-WebWorks-Framew
Playing with viewport solved the problem with large fonts, but now I am not sure what is a good example of viewport meta element.
12-23-2012 02:25 AM
In my opinion
<meta name="viewport" content="width=720, user-scalable=no, target-densityDpi=160" />
is a good start.
It will tell your BB10 browser to set it's viewport width to 720 pixels (even for the first models with a couple of extra pixels, which will get upscaled and might look a little blurry therefore).
03-26-2013 11:08 AM - edited 03-26-2013 11:09 AM
thanks, this worked for my app that is using jQuery mobile BB10 theme.. cheers