BlackBerry - 如何为Application设置图标?

问题描述 投票:0回答:2

我需要为我的应用程序设置一个图标,当关注该特定应用程序时,该图标必须更改。

blackberry icons
2个回答
4
投票

请参阅项目 - >属性 - > BlackBerry Project Properties-> Resources

要动态更改图标,请参阅Add a notification icon at the status bar in BlackBerry JDE 4.5.0

也许有用Icons and indicators


1
投票

如果您在eclipse中使用Blackberry 5.0,请打开Blackberry_App_Descriptor.xml(位于项目的根目录中),在此处找到标记资源(如果它不存在则创建它)并在此处键入

<Icons>
   <Icon CanonicalFileName="res/iconWithoutFocus.png" IsFocus="false"/>
   <Icon CanonicalFileName="res/iconWithFocus.png" IsFocus="true"/>
</Icons>
© www.soinside.com 2019 - 2024. All rights reserved.