我正在为文本字段使用图像。
当我专注于写一些东西时,我写的文本的第一个字母会被剪掉一半。
如何避免这种情况?
我的代码是:
textbox = new EditField(EditField.NO_NEWLINE)
{
protected void layout(int width, int height)
{
super.layout(1000, 38);
super.setExtent((Display.getWidth()),30);
}
}
manager = new VerticalFieldManager(HORIZONTAL_SCROLL)
{
protected void paint(Graphics g)
{
int x = this.getHorizontalScroll();
g.drawBitmap( x, 0,textbox.getWidth(),textboxc.getHeight(),textbox, 0, 0 );
super.paint(g);
}
protected void sublayout(int maxWidth, int maxHeight)
{
Field field = testbox;
layoutChild(field, Display.getWidth(), Display.getHeight());
setPositionChild(field, 148, 8);
super.sublayout(maxWidth, maxHeight);
}
}
manager.add(textbox);