Discussion Board

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 35
  1. #16
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    大家可以参考新发布的Widget e-learning资料。内容比较全面,包括概述和一个开发实例,
    http://www.forum.nokia.com/info/sw.n...ormArticle7CTA

  2. #17
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    wiki articles on widget and code examples.
    http://wiki.forum.nokia.com/index.ph...time_%28WRT%29

  3. #18
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    中文Widget e-learning 发布了, 简单介绍了Widget概念, 及其开发与部署过程:
    http://www.forum.nokia.com/document/...latform_zh_CH/

  4. #19
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    Widget DEMO网站试运行!主要用于Web Run-time Widget及其它Nokia软件平台应用开发技术的演示。现在有两个Widget的例子,及服务器端源代码供参考。欢迎访问!
    http://www.tscfn.cn/gb/b0.htm
    Last edited by happywolf; 2008-04-18 at 10:31.

  5. #20
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    mosh.nokia.com是一个关于内容分享的网络社区,通过搜索“Widget”关键词,可以找到一些WRT Widget。

  6. #21
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    上下文相关的,个性化的Widget

    Widget 将能把Web和平台的能力结合起来。在最近在旧金山召开的Web 2.0 博览会上,诺基亚展示了上下文相关的,个性化的Widget。
    Widget以往主要通过访问Internet来获得信息,下一代的Widget可以利用一些手机平台提供的服务, 如,日历,联系人,GPS,甚至传感器,并把这些信息与其它信息,其他应用结合起来,如Messaging,产生新的混合型应用。
    这些将会在出现在下一版本的S60中,预计于2008年发布。

    更多信息请访问:
    http://blogs.s60.com/voiceofs60/2008...araman_co.html

  7. #22
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    在开发多html页面的widget时,要考虑的几个问题,参见wiki文章:
    http://wiki.forum.nokia.com/index.ph...A%84WRT_widget

  8. #23
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    S60 5.0 中的问题.

    --------------------------------
    5800 (Tube) 不能检测到屏幕方向转动的事件. 临时的办法是用timer轮询.
    如下:
    function poll(){
    setInterval("triggerInterval()", 2000);
    }

    function triggerInterval(){
    alert(screen.width + 'x' + screen.height);
    }
    -----------------------------------
    在5800上,如果界面上有输入框,输入内容后,菜单会自动变成”完成”和”取消”,这时,如果页面上还有另外的按钮,而用户没有点击”完成”或”取消”而直接点击那个按钮,如果这个按钮的事件处理中,进行了setRightSoftKey()操作,就会立刻导致widget非正常退出。解决的方案有几种,一种是不要在有输入框的页面放置其它按钮和链接,而是将需要的功能放在左键选项菜单中,这样用户只有点击”完成/取消”之后,才有机会再点击其它功能;还有就是在不要改变右键菜单,这样的效果就是完成当前操作后,菜单还是停留在”完成/取消”。
    -----------------------------------
    Last edited by happywolf; 2008-12-19 at 08:26.

  9. #24
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    S60 5.0 SDK widget 培训资料见以下链接, 谢谢大家参加培训!
    http://wiki.forum.nokia.com/index.ph...on_5.0_SDK.pdf
    Last edited by happywolf; 2009-02-11 at 03:36.

  10. #25
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    S60 5.0 SDK 正式版发布了, 现在可以在中文环境下测试widget了!
    http://www.forum.nokia.com/info/sw.n..._One_SDKs.html

  11. #26
    Nokia Developer Expert green_lu's Avatar
    Join Date
    Mar 2003
    Posts
    537
    校园演讲在上海华东理工大学,南京大学,武汉理工大学和西安电子科技大学举办,非常感谢广大师生的参加。

    http://www.forum.nokia.com/piazza/wi...ty_2009_cn.pdf
    Gening
    IMPOSSIBLE IS NOTHING

  12. #27
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    今天,诺基亚发布了三个支持 WRT widget 开发的插件。大家可以下载试用。

    *Nokia WRT Extension for Adobe Dreamweaver
    http://www.forum.nokia.com/Tools_Doc...ver_Extension/

    *Nokia WRT Plug-in for Microsoft Visual Studio
    http://www.forum.nokia.com/Tools_Doc...Studio_Plugin/

    *Nokia WRT Plug-in 2.0 for Aptana Studio
    http://www.forum.nokia.com/Tools_Doc...Aptana_Plugin/

    相关链接,
    http://www.nokia.com/A4136001?newsid=1321415
    http://nwiki.nokia.com/twiki/pub/FNP...inv2Final.pptx
    Last edited by happywolf; 2009-06-10 at 04:52.

  13. #28
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    开发WRT widget过程中, UI设计是很重要的. UI虽非严格的科学问题, 但也有一些规律可以遵循. 尤其是PC 开发人员转到移动开发领域, 有一些需要特别注意的地方. 以下的UI 测试case可供参考.

    User Experience Evaluation Model
    Last edited by happywolf; 2009-06-16 at 06:16.

  14. #29
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    WRT bug 列表如下. 如开发过程中遇到问题, 看是否属于已知问题.http://wiki.forum.nokia.com/index.ph...b_Technologies

  15. #30
    Regular Contributor happywolf's Avatar
    Join Date
    Aug 2007
    Posts
    230
    API bridge 可以与symbian的一系列插件通讯, 扩充WRT widget的能力.

    Plug-ins supported
    ------------------

    - File upload
    - Video, image, and audio capturing
    - File reading
    - Image resizing
    - Image thumbnail creation
    - Logging service
    - Location service
    - Media management service

    Supported platforms
    -------------------

    - S60 3rd Edition, Feature Pack 1
    - S60 3rd Edition, Feature Pack 2
    - S60 5th Edition

    下载 http://www.forum.nokia.com/info/sw.n...60pkCid9MWH-20

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Replies: 1
    Last Post: 2009-12-20, 05:28
  2. WRT Comm Manager Widget
    By cheatman in forum Symbian Web Runtime
    Replies: 3
    Last Post: 2009-11-02, 09:49
  3. How to open browser in emulator from wrt widget
    By sanjay6564 in forum Symbian Web Runtime
    Replies: 3
    Last Post: 2009-05-11, 10:31
  4. What is WRT 1.0, 1.1, 1.2 versions?
    By naroori in forum Symbian Web Runtime
    Replies: 2
    Last Post: 2008-12-24, 20:07

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved