如何使用移动小部件的不同视图模式?

发布于 2024-09-13 17:21:35 字数 92 浏览 5 评论 0原文

我正在尝试使用沃达丰移动小部件平台制作移动应用程序,我发现它们支持不同的视图模式,例如...停靠、浮动等...如何利用它们?另外,有什么方法可以检测小部件何时停靠或浮动?

I'm trying to make a mobile application using the Vodafone Mobile Widget Platform 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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽你眉间 2024-09-20 17:21:35

三星 H1/M1 手机支持浮动模式,而 S60 手机上的运行时支持对接模式(活动图标)。为了启用这些模式,请在 config.xml 标记中添加属性 floatable="yes" 和/或 dockable="yes"。您可以通过检查 widgetmodechange 事件处理程序中的 widget.widgetMode 值来检测您的小部件何时切换模式:

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

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]);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文