03-09-2010 05:22 AM
class CustomEditField extends EditField{
CustomEditField(String text) {
super("",text);
}
public void layout(int width, int height){
super.layout(getPreferredWidth(),getPreferredHeigh
setExtent(getPreferredWidth(),getPreferred
}
public int getPreferredHeight(){
return super.getPreferredHeight();
}
public int getPreferredWidth(){
return (Display.getWidth()*2/3);
}
}
this is my custom edit field.
when I type on this field and reaches end of the field, can n't see the letters after that, but i can type( only thing is typed letters are not visible after end of field)
what is the solution
Solved! Go to Solution.
03-09-2010 07:19 AM
is there no solution to this problem?
03-09-2010 03:36 PM
Scrolling?
03-10-2010 07:53 AM
I thing you didnt got my problem
I have custom editfield where its width is set around 50;
when the width of typed text reaches 50(width of field), cant see remaining text after , but still ican type and getText() return the full text!!!!!!!
03-10-2010 08:18 AM
Did you enable vertical scrolling in the Manager that contains this field?
03-10-2010 08:37 AM - edited 03-10-2010 08:39 AM
I have not disabled the scrol;
i thing by default its enabled
the field is within a horizontalfieldmanager
03-10-2010 11:39 AM
I'm pretty sure you need to explicitly enable scrolling. See the Manager javadocs.
Also, you are limiting the extent of your field, which may also defeat scrolling.