TextField显示问题??
怎样使得 TextField在没有输入内容时显示为一屏幕布的大小??有代码的更好
搜索更多相关的解决方案:
TextField
----------------解决方案--------------------------------------------------------
建议你选择TEXT AREa。
----------------解决方案--------------------------------------------------------
程序代码:
下面就是代码:
Form form = new Form("") ;
TextField textPhone = new TextField("","",10,TextField .ANY) ;
textPhone.setPreferredSize(form.getWidth(), form .getHeight());
像上面那样就可以时TextField 在手机中全屏显示。 Form form = new Form("") ;
TextField textPhone = new TextField("","",10,TextField .ANY) ;
textPhone.setPreferredSize(form.getWidth(), form .getHeight());
----------------解决方案--------------------------------------------------------