0

如何将焦点吸引到VerticalFieldManager黑莓中。

我已经尝试过了,但没有工作。

VerticalFieldManager vv=new VerticalFieldManager(Manager.focusFOCUSABLE);
4

3 回答 3

1

您可以尝试调用Field.setFocus它,但由于经理是一个容器,我不确定您是否会看到它的“焦点”。

如果它不起作用,您也可以尝试覆盖该方法并在返回 truepaint时绘制自己的自定义焦点。isFocus

于 2012-04-24T13:47:41.793 回答
0

试试这个 -

VerticalFieldManager vv=new VerticalFieldManager(FOCUSABLE);

然后将项目添加到 vv。

于 2012-04-24T13:43:55.607 回答
0

这是这样做的方法:

VerticalFieldManager vv=new VerticalFieldManager(FOCUSABLE) {
    protected void paintBackground(Graphics g) {
    int prevColor = g.getColor();
    int bgColor;

    if (isFocus()) {
        bgColor = Color.Blue;
    } else {
        bgColor = Color.White;
    }

    g.setColor(bgColor);
    g.fillRoundRect(0, 0, getPreferredWidth(), getPreferredHeight(), 0, 0);
    g.setColor(prevColor);
}
    public void onFocus(int direction) {
    super.onFocus(direction);
    this.invalidate();
}
public void onUnfocus() {
    super.onUnfocus();
    this.invalidate();
}
};
_focusAnchor = new NullField(FOCUSABLE);
add(_focusAnchor);
于 2012-04-25T09:43:36.320 回答