vote up 1 vote down star

I created a CustomButtonField in blackberry using that i can able to set our own height and width of the button.The problem i m facing is i dont know how to show the label in the center of the button.

flag

53% accept rate

1 Answer

vote up 1 vote down check

You can use paint method to modify label layout, color and font.
alt text
See example:

class CustomButton extends ButtonField {
    int mHeight;
    int mWidth;

    public CustomButton(int height, int width, String label) {
    	super(label, CONSUME_CLICK);
    	mHeight = height;
    	mWidth = width;
    }

    public int getPreferredHeight() {
    	return mHeight;
    }

    public int getPreferredWidth() {
    	return mWidth;
    }

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

    protected void paint(Graphics graphics) {
    	graphics.setColor(Color.WHITE);
    	String label = getLabel();
    	int x = (getPreferredWidth() - getFont().getAdvance(label)) >> 1;
    	int y = (getPreferredHeight() - getFont().getHeight()) >> 1;
    	graphics.drawText(label, x, y);
    }
}

Example of use:

class Scr extends MainScreen implements FieldChangeListener {
    CustomButton button1;
    CustomButton button2;
    CustomButton button3;

    public Scr() {
    	add(button1 = new CustomButton(15, 60, "first"));
    	button1.setChangeListener(this);
    	add(button2 = new CustomButton(30, 120, "second"));
    	button2.setChangeListener(this);
    	add(button3 = new CustomButton(50, 200, "third"));
    	button3.setChangeListener(this);
    }

    public void fieldChanged(Field field, int context) {
    	if (field == button1)
    		Dialog.inform("first");
    	if (field == button2)
    		Dialog.inform("second");
    	if (field == button3)
    		Dialog.inform("third");
    }

}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.