0

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

halfer
  • 19,824
  • 17
  • 99
  • 186
Bohemian
  • 5,957
  • 11
  • 38
  • 47

2 Answers2

4

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

Community
  • 1
  • 1
Maksym Gontar
  • 22,765
  • 10
  • 78
  • 114
1

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>
Valera
  • 11
  • 2