Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 J2ME 表单中有一个下拉列表,现在我想在选择下拉列表的特定值时显示一个文本字段,同时当我选择文本字段应隐藏的下拉列表的任何其他值时。
如何在 J2ME 中做到这一点?
您可以为包含下拉列表的表单设置 ItemStateListener,并且每当下拉选择发生更改时,都会调用侦听器的 itemStateChanged 方法,您可以根据下拉选择的值将文本字段附加/插入表单或从中删除。