🇨🇳 中文 (Chinese - China)
🇨🇳 中文 (Chinese - China)
外观
🇨🇳 中文 (Chinese - China)
🇨🇳 中文 (Chinese - China)
外观
本页面基于这个版本编写:
1.21
本页面基于这个版本编写:
1.21
组件本质上是容器化的界面元素,可以被添加到屏幕中供玩家交互,交互方式包括鼠标点击、键盘输入等。
有很多种创建组件的方式,例如继承 ClickableWidget
。 这个类提供了许多实用功能,比如控制组件的尺寸和位置,以及接收用户输入事件。事实上这些功能由 Drawable
、Element
、Narratable
、Selectable
接口规定:
Drawable
用于渲染,需要通过 Screen#addDrawableChild
将组件注册到屏幕中。Element
用于事件,比如鼠标点击、键盘输入等,需要这个来处理事件。Narratable
用于无障碍,让组件能够通过屏幕阅读器或其他无障碍工具访问。Selectable
用于选择,实现此接口后组件可以由 Tab 键选中,这也能帮助无障碍。public class CustomWidget extends ClickableWidget {
public CustomWidget(int x, int y, int width, int height) {
super(x, y, width, height, Text.empty());
}
@Override
protected void renderWidget(DrawContext context, int mouseX, int mouseY, float delta) {
// We'll just draw a simple rectangle for now.
// x1, y1, x2, y2, startColor, endColor
int startColor = 0xFF00FF00; // Green
int endColor = 0xFF0000FF; // Blue
context.fillGradient(getX(), getY(), getX() + this.width, getY() + this.height, startColor, endColor);
}
@Override
protected void appendClickableNarrations(NarrationMessageBuilder builder) {
// For brevity, we'll just skip this for now - if you want to add narration to your widget, you can do so here.
return;
}
}
如同其他组件,您需要使用 Screen#addDrawableChild
来将组件添加到界面中。 请确保这一步在 Screen#init
方法中完成。
// Add a custom widget to the screen.
// x, y, width, height
CustomWidget customWidget = new CustomWidget(40, 80, 120, 20);
this.addDrawableChild(customWidget);
您可以自定义用户输入事件的处理逻辑,比如覆写 onMouseClicked
、onMouseReleased
、onKeyPressed
等方法。
举个例子,您可以使用 ClickableWidget#isHovered
方法来使组件在鼠标悬停时变色。
// This is in the "renderWidget" method, so we can check if the mouse is hovering over the widget.
if (isHovered()) {
startColor = 0xFFFF0000; // Red
endColor = 0xFF00FFFF; // Cyan
}