如何从 J2ME 中的表单中删除文本字段
嘿嗨朋友们, 我创建了一个应用程序,在一个文本字段中,我从用户那里获取输入作为 id,并根据 id 显示信息。在运行时,我添加了另一个文本字段,但假设用户插入了错误的 ID,那么我想从表单中删除所有文本字段。可以删除之前添加的文本字段。
Hey Hi Friends,
I have created one application where in one text field i am getting input from user as id and according to id i am displaying the information. At run time i am adding another text fields but suppose user inserting wrong id then i want remove all text fields from Form. it is possible to remove text fields which added previously.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您想在这里实现什么,但 Form.delete(int itemNum) 和 Form.deleteAll() 将允许您删除已添加到表单中的项目。
请参阅表单文档。
I am not sure what you are trying to achieve here but Form.delete(int itemNum) and Form.deleteAll() will allow you to delete Items that have been added to a Form.
See Form documentation.