如何在Canvas中添加垂直滚动条?

发布于 2024-12-18 21:06:24 字数 260 浏览 2 评论 0原文

我正在使用 开发 Java ME 应用程序画布Canvas 上显示的详细信息非常丰富,因此我需要向下滚动屏幕才能查看更多详细信息。

但是如何在 Canvas 上添加垂直滚动条?

I am developing a Java ME application using Canvas. The details displayed on the Canvas are plentiful, so I need to scroll down the screen to view the further details.

But how can I add a vertical scrollbar on a Canvas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟酒忠诚 2024-12-25 21:06:24

我认为滚动条应该在 paint 方法内绘制。当单击滚动条的箭头时,您将实现 keyReleased 方法。要实现滚动,我更愿意调用repaint();,并且我将使用boolean或管理paint方法一些其他类型的私有变量

I think that the scrollbar should be drawn inside the paint method. And you implement the keyReleased method when clicking the arrow of the scrollbar. To implement the scrolling I would prefer call repaint(); and I will manage the paint method with boolean or some other type of private variable.

一抹淡然 2024-12-25 21:06:24

将画布视为源,将滚动条视为目标,使用以下公式查找滚动条位置

Target point X co-ordinate: tX = taX + ((tW * (sX - saX)) / sW)

Target point Y co-ordinate: tY = taY - ((tH * (saY - sY)) / sH)

saX : Source axis start X coordinate

saY : Source axis start Y coordinate

sW : Souce Width

sH : Source Height

taX : Target axis start X coordinate

taY : Target axis start Y coordinate

tW : Target Width

tH : Target Height

。目标高度将是画布的高度。您必须将滚动条绘制为最上面的元素。

Consider your canvas as the source and the scroll bar as destination use the following formula to find the scroll bar position

Target point X co-ordinate: tX = taX + ((tW * (sX - saX)) / sW)

Target point Y co-ordinate: tY = taY - ((tH * (saY - sY)) / sH)

saX : Source axis start X coordinate

saY : Source axis start Y coordinate

sW : Souce Width

sH : Source Height

taX : Target axis start X coordinate

taY : Target axis start Y coordinate

tW : Target Width

tH : Target Height

The target height would be the height of the canvas. You must draw the scroll bar as the topmost element.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文