关于黑莓中的CustomButtonField

时间:2011-06-29 07:55:43

标签: blackberry

假设我有一个自定义按钮字段,其中包含2个位图图片,比如2个箭头(左边一个,右边一个),当用户点击此按钮时,箭头的颜色应该在我的应用程序中变为红色。我是通过点击evevt推动同一个屏幕来做到这一点的。我使用int变量 pic_status 来确定在调用 pushScreen()时应该在custombutonfield上加载哪个图片。有没有办法在不调用pushScreen()的情况下从同一屏幕更新customButtonField(更新位图)。

    public void fieldChanged(Field field, int context) 
{
    if(field == bf1)
    {

      if(pic_status == 0)
       {
           b =1;


       }
      UiApplication.getUiApplication().pushScreen(new Screen2(b));    


  }

在上面的代码中,您已经看到如果用户点击,我会推送同一个屏幕 按钮。 Plz给出代码来更新它而不调用pushScreen()。

1 个答案:

答案 0 :(得分:1)

下面是具有两个图像的customButtonField的代码。一个用于聚焦图像,另一个用于正常图像。

要更新按钮图像,您只需要为正常图像调用setBitmap方法。 您可以根据自己修改以下代码。调用setBitmap方法后,需要调用invalidate()方法。

import net.rim.device.api.system.Bitmap;
import net.rim.device.api.ui.Graphics;
import net.rim.device.api.ui.component.BitmapField;
import net.rim.device.api.ui.component.LabelField;

class BitmapButtonField extends BitmapField 
{
    Bitmap mNormal;
    Bitmap mFocused;
    String text;
    int mWidth;
    int mHeight;
    public Bitmap bitmap = null;

    public BitmapButtonField(String text,Bitmap normal, Bitmap focused)
    {
        super(normal,FOCUSABLE);
        mNormal = normal;
        mFocused = focused;
        mWidth = mNormal.getWidth();
        mHeight = mNormal.getHeight();
        this.text=text;
        setMargin(0, 0, 0, 0);
        setPadding(0, 0, 0, 0);
    }
    public void setBitmap(Bitmap bitmap)
    {
        mNormal=bitmap;

        this.bitmap=bitmap;
    }
    public void setfocusBitmap(Bitmap bitmap)
    {
        mFocused=bitmap;
    }
    public String getText()
    {
        return text;
    }
    public void setText(String text)
    {
        this.text=text;
    }
    protected void paint(Graphics graphics) {
        Bitmap bitmap = mNormal;
        if(isFocus())
        {
             bitmap = mFocused;
        }
        else
        {
            bitmap = mNormal;
        }

        graphics.drawBitmap(0, 0, bitmap.getWidth(), bitmap.getHeight(),
                        bitmap, 0, 0);
        LabelField l=new LabelField(text);

        graphics.drawText(text,  bitmap.getWidth()/2-l.getPreferredWidth()/2+3,  bitmap.getHeight()/2-l.getPreferredHeight()/2);    
    }
    protected void drawFocus(Graphics graphics, boolean on) {
    }
    protected void onFocus(int direction) {
        invalidate();
        super.onFocus(direction);
    }
    protected void onUnfocus() {
        invalidate();
        super.onUnfocus();
    }
    public int getPreferredWidth() {
        return mWidth;
    }

    public int getPreferredHeight() {
        return mHeight;
    }

    protected void layout(int width, int height) {
        setExtent(mWidth, mHeight);
    }
}