开发者

How can i use the different view modes of a mobile widget?

开发者 https://www.devze.com 2023-01-11 01:51 出处:网络
I\'m trying to make a mobile application using the Vodafone Mobile Widget Pla开发者_开发百科tform and I\'ve seen they support different view modes, like... docked, floating, etc... How can make use of

I'm trying to make a mobile application using the Vodafone Mobile Widget Pla开发者_开发百科tform and I've seen they support different view modes, like... docked, floating, etc... How can make use of them? Also, is there any way to detect when a widget is docked or is floating?


Floating mode is supported by the Samsung H1/M1 phones, while docked mode (active icon) is supported by the runtime on the S60 phones. In order to enable these modes, add the attribute floatable="yes" and/or dockable="yes" in your config.xml's tag. You can detect when your widget switched modes by checking the value of widget.widgetMode inside the widgetmodechange event handler:

widget.addEventListener('widgetmodechange', callback, [true|false]);

0

精彩评论

暂无评论...
验证码 换一张
取 消