i want to display both TextBox and TextField on the screen at a time but i am unable to add TextBox to form. is开发者_JAVA技巧 there any way to display both of them at a time. that is textBox at the top and TextField below it. plz help me. i will be pleased if any code is given
thank u in advance
A TextBox
is a Screen
, not an Item
, therefore you cannot add it to a Form
, and there is no way to display both of these things on screen at once.
If you want to display some additional text on screen while a TextBox
is active, you can use its title (via setTitle()
), or you could scroll it across the top using setTicker()
.
I guess, you must write you own TextBox
component. It must extend Canvas
. And you must paint it yourself, using drawLine
, drawString
.
精彩评论