如何将自定义图像添加到黑莓中的文本字段?

时间:2011-03-16 17:48:31

标签: blackberry textfield horizontalfieldmanager

尝试将背景图像添加到文本字段但是当用户输入并进入水平滚动时,图像似乎被复制,使其看起来如下所示: enter image description here

基本上我希望第一个文本字段在用户输入大值后看起来像第二个。我有一个扩展horizo​​ntalfieldManager的类,在我的paint函数中有以下内容:

protected void paint(Graphics g)
{
    g.clear();
    if (mLabelMode)
    {
        g.setColor(mLabelColor);
    }
    else
    {
        g.setColor(mColor);
    }

    int x = this.getHorizontalScroll();

    g.drawImage(x, 0, mBackground.getWidth(), mBackground.getHeight(), mBackground, 0, 0, 0);

    super.paint(g);
}

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:2)