I want a non-editable TextField (or a subclass) that doesn't even have the caret displayed. Alternatively, I want a multiline LabelField. Is any of these possible?
Blackberry Java: TextField *without* the caret?
3.7k Views Asked by noamtm At
3
There are 3 best solutions below
0

Yes, you can override the paint method of each UI Element
An example:
public class WhiteLabelField extends LabelField
{
public WhiteLabelField()
{
super();
}
public WhiteLabelField(ObjectGroup text)
{
super(text);
}
public WhiteLabelField(Object text, long style)
{
super(text, style);
}
public void paint(Graphics _g)
{
_g.setColor(Color.WHITE);
super.paint(_g);
}
// Custom
public void setSmallFontSize()
{
setFont( Font.getDefault( ).derive( Font.PLAIN, 16 ));
}
}
TextField without focus cursor
TextField drawFocus override
If text is too large to fit the screen, you can override drawFocus method in TextField, so scrolling will be available:
TextFields, separated with NullFields
Other option is to split TextField into several, separated with NullFields:
Multiline LabelField
Multiline text in LabelField, just use newline escape character: