我尝试做的只是更改EditField的高度。 这听起来很容易,但我面临一个让我发疯的问题。 这是我的代码:
public class CMainManager extends HorizontalFieldManager
{
EditField mtxt=new EditField(EditField.FOCUSABLE | EditField.FILTER_DEFAULT);
/* Constructeur */
public CMainManager()
{
add(mtxt);
}
public int getPreferredHeight()
{
return Display.getHeight();
}
public int getPreferredWidth()
{
return Display.getWidth();
}
protected void sublayout(int width, int height)
{
layoutChild(mtxt, 50, 500);
setPositionChild(mtxt, 0, 10);
mtxt.setBackground(
BackgroundFactory.createSolidBackground(0x000000FF));
setExtent(width, height);
}
}
行layoutChild(mtxt,50,500);应该设置我的EditField的宽度和高度。它确实如此,但只有宽度。高度是恒定的。如果我将其设置为500,我会得到与将其设置为10相同的结果。
知道我缺少什么吗?因为我确定这是我正在做的一个愚蠢的错误......
由于
==修改
在jproffit帮助之后,我明白我做错了什么。然而,现在它工作(我可以设置高度)我有另一个问题。这是我的代码:
private EditField m_Txt=new EditField(EditField.FOCUSABLE |
EditField.FILTER_DEFAULT) {
protected void layout(int width, int height)
{
setExtent(Display.getWidth(), m_TxtHeight);
}
public boolean isFocusable()
{
return true;
}
protected void onFocus(int direction)
{
super.onFocus(direction);
invalidate();
}
protected void onUnfocus() {
super.onUnfocus();
invalidate();
}
};
使用此代码,我无法正确管理焦点。我忘记了什么?我无法在我的领域看到光标。
有什么想法吗?
由于
答案 0 :(得分:2)
你没有告诉它要采取的尺寸,你指定它可以占用的最大空间量。因此,当你告诉它10,50或500时,如果它只想使用8的高度就是它的全部。如果您想控制其尺寸,则必须覆盖EditField上的layout()
。
答案 1 :(得分:0)
尝试这样做.. 在布局方法中创建自定义编辑字段
_editField = new EditField("", initialValueOfTextField)
{
protected void layout(int maxWidth, int maxHeight)
{
int myWidth = getMaxSize() * getFont().getAdvance("W");// define your req width
int myHeight= 50 // your required height
super.layout(myWidth, myHeight);
}
};