在黑莓树视图中添加垂直字段管理器
您好,我是黑莓新手,谁能告诉我如何将垂直字段管理器添加到树视图中?
Hello I am new to Blackberry , Can any one tell me that how to add Vertical Field Manager in to Tree View?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TreeField
不是为此设计的。它不是Manager
,因此您无法向其中添加任何子字段。与ListField
类似,TreeField
是一种在 UI 上表示潜在大型数据结构的方法,而不会占用太多 RAM(因为在这种情况下,只有唯一的 UI 对象 - <代码>TreeField)。TreeField
is not designed for this. It is not aManager
, so you can't add any child fields to it. Similar toListField
theTreeField
is a way to represent on UI a potentially large data structure without eating too much RAM (since in this case there is the only UI object - theTreeField
).