언어 설정

Menu
Sites
Language
Web apps config.xml

hi,

Need some help here, to submit a 480x800 webapps to Tizenstore.

In the TizenIDE define width and height in the config.xml

 

<widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="xxx" version="1.0.0" height="800" width="480" viewmodes="maximized">

 
When i've upoaded the widget, the store pickup the resolution as ALL, and u are not allowed manually specify which resolutions to use.
Question -Anyone uploaded a 480x800 webapps to tizen store and how did you do it ? thanks!
 
Br,
Peter 
 
Edited by: Brock Boland on 17 3월, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

5 댓글
Lakshmi Grandhi
Hii , Visit the tizen store site and query your doubt there in " My Q & A " section .
Marco Buettner
In my opinion at the moment only the resolution 720x1280 is supported.
Peter Ong
Thank you, that confirm my suspicion...atm it's a default resolution.
Jihoon Chung
Hi, How about using view-port meta tag to control web application size? It will be very useful to control width and height even device screen is changed.
Alex Dem
Hi As I know real device size is 720x1024. 1) If you want to set your app's width= 480 try to set 'viewport' this way: <_meta name="viewport" content="width=480 user-scalable=no"_> 2) If you want to set your app's width= 720 try to set 'viewport' this way: <_meta name="viewport" content="width=720 user-scalable=no"_> Note: please and remove extra "_". p.s. Also you could experiment with "initial-scale maximum-scale, user-scalable " params to configure "viewport". For example if you set <_meta name="viewport" content="width=device-width, initial-scale=0.5, maximum-scale=0.5"_> your screen will be looked like for <_meta name="viewport" content="width=720 user-scalable=no_> Provided above way how to set width is more simple. Alexey.