BlackBerry - How to set icon for Application?

后端 未结 2 1554
我在风中等你
我在风中等你 2021-01-28 16:23

I need to set up an icon for my application which must change when the focus is on that particular application.

相关标签:
2条回答
  • 2021-01-28 16:45

    See Project->Properties->BlackBerry Project Properties->Resources

    To change icon dynamically see Add a notification icon at the status bar in BlackBerry JDE 4.5.0

    Also may be useful Icons and indicators

    0 讨论(0)
  • 2021-01-28 16:56

    If you use Blackberry 5.0 in eclipse, open Blackberry_App_Descriptor.xml (which is in the root of the project), find here tag Resources (create it if it doesn't exist) and type here

    <Icons>
       <Icon CanonicalFileName="res/iconWithoutFocus.png" IsFocus="false"/>
       <Icon CanonicalFileName="res/iconWithFocus.png" IsFocus="true"/>
    </Icons>
    
    0 讨论(0)
提交回复
热议问题