gpt4 book ai didi

java - 如何在j2me中创建文本区域

转载 作者:行者123 更新时间:2023-11-29 03:46:36 25 4
gpt4 key购买 nike

下面的代码只显示文本字段,但我想包括文本字段和文本区域。需要帮助

form1 = new Form("Mobile"); 
tb2 = new TextField("To: ", "", 30, TextField.ANY);
TextBox tb3 = new TextBox("Message: ", "", 256, TextField.ANY);
form1.append(tb2);
// form1.append(tb3);
form1.addCommand(submitCommand);
display.setCurrent(tb3);
display.setCurrent(form1);

最佳答案

你所说的textarea是一个lcdui对象TextBox;不能与 TextField 同屏显示。

如果您有兴趣,请参阅 'lcdui' tag info有关原因的更多详细信息(有指向 API 引用、教程、流行库等的链接)。

对于您发布的代码片段,首先想到的是将 TextBox 替换为 TextField,例如

        // ...initialization of Form and tb2
TextField tb3 = new TextField("Message: ", "", 256, TextField.ANY);
// above, TextBox has been replaced with TextField
form1.append(tb3); // show "Message" textfield above "Mobile"
form1.append(tb2);
form1.addCommand(submitCommand);
display.setCurrent(form1);

关于java - 如何在j2me中创建文本区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10604884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com