4.使用Processing编程在界面中显示一段提示文字“Click in this sketch and type. Hit return to save what you typed.”,表示当激活界面时,可以使用键盘输入字符串,当按下回车键时,界面中显示输入的字符串内容。
时间: 2024-02-23 07:02:21 浏览: 100
JS实现基于Sketch.js模拟成群游动的蝌蚪运动动画效果【附demo源码下载】
以下是一个使用Processing编程的例子,实现在界面中显示一段提示文字,可以使用键盘输入字符串,并在按下回车键时显示输入的字符串内容:
```java
String inputText = "";
boolean isInputting = true;
void setup() {
size(500, 500);
textSize(24);
textAlign(CENTER, CENTER);
}
void draw() {
background(255);
text("Click in this sketch and type. Hit return to save what you typed.", width/2, height/2);
if (!isInputting) {
text("You typed: " + inputText, width/2, height/2 + 50);
}
}
void keyPressed() {
if (isInputting) {
if (key == '\n') {
isInputting = false;
} else {
inputText += key;
}
}
}
```
程序会在屏幕中央显示一段提示文字,当激活界面并点击后,即可输入字符串。当按下回车键后,界面中会显示输入的字符串内容。
阅读全文