BlackBerry:列表字段 - 如何仅突出显示文本而不是整个字段
我有一个显示文本的列表字段,并且我希望在选择该字段时仅将文本显示为焦点。我不想将整个字段突出显示为蓝色,而是只希望突出显示文本。
我找到了更改突出显示颜色的方法,但没有找到如何限制突出显示的区域。
I have a list field displaying text, and I want only the text to display as focused when the field is selected. Instead of the whole field being highlighted in blue, I want only the text to be highlighted.
I have found methods to change the highlight color, but not how to limit the area being highlighted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还没有尝试过这个,但是您应该能够只覆盖
drawFocus()
不执行任何操作(这将消除突出显示),然后在您的drawListRow()< /code> 检查该行是否是选定的行,如果是这种情况,则将文本绘制为不同的颜色。
I haven't tried this, but you should be able to do just override
drawFocus()
to do nothing (that will get rid of the highlighting), and then in yourdrawListRow()
check if the row is the selected row, and if that's the case draw the text a different color.