黑莓中图像的设置
我可以知道如何为 Blackberry 中的按钮设置背景图像吗?
May I know how to set background images to a Button in Blackberry?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以知道如何为 Blackberry 中的按钮设置背景图像吗?
May I know how to set background images to a Button in Blackberry?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
尝试以下链接:
您可以通过扩展来获取您的自定义按钮按钮字段或字段。对于 ButtonField,您必须覆盖默认的 paint(...)、paintBackground(...)、drawFocus(...) 、 applyTheme(...) 等
paint(...) - 可以绘制图像或其他几何图形而不是文本
paintBackground(...) -定义按钮背景的外观
drawFocus(...) -定义按钮获得焦点时的外观
applyTheme(...) - 如果您想删除默认样式,则不执行任何操作
如果扩展 Field,您将获得更多定制选项。
Try following links:
You can get your customized button by extending ButtonField or Field. In case of ButtonField you have to override default paint(...), paintBackground(...), drawFocus(...), applyTheme(...) etc.
paint(...) - can draw image or other geometric figures instead of text
paintBackground(...) - define how should your button's background look
drawFocus(...) - define how the button looks when it got focus
applyTheme(...) - do nothing if you want to remove default styling
If you extend Field, you will get more option for customization.
查看文章 ButtonField with Image as a背景。它会对你有帮助。
Look at the article, ButtonField with Image as a BackGround. It will helps you.
查看此处的代码,其中解释了如何创建 custom-image-黑莓中的按钮字段
Check out the code here which explains to create custom-image-buttonfield-in-blackberry