ListModel 已更改的 LWUIT 列表
我在 LWUIT 中有一个 List
。我的问题是这样的。当我在 List
的一个元素中按 FIRE 键时,所选项目会更改属性,因此 List
的模型会发生变化,并且当我尝试继续向下时List
失去焦点。
我尝试重新加载新模型,重新绘制 Form
,重新绘制 List
,但似乎没有任何效果。当我改变模型时我总是失去焦点。
我能做些什么?
I have a List
in LWUIT. My problem is this. When I press FIRE key in one of the elements of the List
,the selected item changes an attribute so the model of the List
change, and when I try to continue going down the List
lose the focus.
I try to reload the new model, to repaint the Form
, to repaint the List
, but nothing seems to work. I always lose focus when I change the model.
What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在事件代码中使用
myList.setHandlesInput(true);
。Use
myList.setHandlesInput(true);
in your event code.