Domanda

Ho creato un CustomButtonField in blackberry usando quello che posso impostare la nostra altezza e larghezza del pulsante. Il problema che sto affrontando è che non so come mostrare l'etichetta al centro del pulsante.

È stato utile?

Soluzione

Puoi usare il metodo paint per modificare il layout, il colore e il carattere dell'etichetta.
alt text http://img9.imageshack.us/img9/8017/custombutton.jpg
Vedi esempio:

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);
    }
}

Esempio di utilizzo:

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");
    }

}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top