创建自定义 PictureScrollField
我想创建一个自定义 PictureScrollField
来管理图像之间的距离。使用它并指定不同的 HighlightStyles
时,我可以获得我想要的内容,但我想更改图像之间的间距。我没有找到任何函数来最小化它们之间的空间或将其设置为 0 或 -10 例如。我该怎么办呢。我认为创建自定义 PictureScrollField
可以解决这个问题,但我不知道我必须在 Paint(Graphics) 函数中放入什么。使用 Super.paint 不会做到这一点。
那么我如何使用PictureScrollField
来实现这一点呢?
谢谢
I want to create a custom PictureScrollField
to manage the distance between the images. When using it, and specifying different HighlightStyles
, I can obtain what I want but I want to change the space between the images. I didn't find any function to minimize the space between them or set it to 0 or -10 for example. How can I do this. I thought creating a custom PictureScrollField
will resolve this but I don't know what I will have to put in the paint(Graphics) function. Using Super.paint will not make this.
So how can I realize this using PictureScrollField
?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看过
PictureScrollField.setImageDistance(int gap);
吗?它直到 OS 6.0 才可用,因此如果您使用 OS 5.0,您可能会运气不好。Did you look at
PictureScrollField.setImageDistance(int gap);
? It isn't available until OS 6.0 so if you are using OS 5.0 you may be out of luck.