如何增加 VerticalFieldManager 中字段之间的间距
我在verticalFieldManager 中添加了三个CustomButtons,但按钮之间没有间距。所有人都一个接一个地来。
I am adding three CustomButtons in verticalFieldManager, but there is no spacing between the buttons. all are coming one after the other.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用方法
setPadding(int top, int right, int Bottom, int left)
use the method
setPadding(int top, int right, int bottom, int left)
您还可以使用 Field.setMargin(int Top, int Right, int Bottom, int Left) 方法来完成此操作。您可以在此论坛上找到文章,讨论是否应该使用未记录的函数使用与否,但
setMargin()
甚至在 RIM 自己的示例中使用过,所以我怀疑使用它是否有任何问题。you can also do it by using
Field.setMargin (int Top, int Right, int Bottom, int Left)
method. You may find articles on this forum debating if undocumented functions should be used or not butsetMargin()
has even been used in RIM's own examples so I doubt there is any problem with using it.