Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
Contributor
pranit03
Posts: 10
Registered: ‎07-18-2012
My Carrier: home
Accepted Solution

ButtonField didn't show any label

 

 

 

In above u can see that ButtonField didn't show any label, what should I do for taht??

 

In that I had use setExtent() method to fit my buttons on display.

 

 

btnSeven = new ButtonField("7") {
            protected void layout(int width, int height) {
                setExtent(Display.getWidth()>>3, 30);

            }
        };
        btnEight = new ButtonField("8") {
            protected void layout(int width, int height) {
                setExtent(Display.getWidth()>>3, 30);
            }

            // protected void paintBackground(Graphics g) {
            //
            //
            // };
        };
        btnNine = new ButtonField("9") {
            protected void layout(int width, int height) {
                setExtent(Display.getWidth()>>3, 30);
            }
        };
        btnDiv = new ButtonField("/") {
            protected void layout(int width, int height) {
                setExtent(Display.getWidth()>>3, 30);
            }
        };

 

when I remove setExtent Method label of buttonField will display.

Please use plain text.
Developer
JoVinz
Posts: 255
Registered: ‎05-03-2012
My Carrier: Vodafone

Re: ButtonField didn't show any label

Use setLabel
Please use plain text.
Contributor
pranit03
Posts: 10
Registered: ‎07-18-2012
My Carrier: home

Re: ButtonField didn't show any label

Its not working, I had tried that before. U see in that construct of ButtinField I already specified the label.
Please use plain text.
Developer
arkadyz
Posts: 2,268
Registered: ‎07-08-2009
My Carrier: various

Re: ButtonField didn't show any label

Your problem is your layout override - ButtonField does much more in its layout than just setting the extent. The proper way with ButtonField (never documented, by the way, so I understand your confusion) is to define getPreferredWidth and getPreferredHeight to return your desirable dimensions and leave its layout alone.

 

When you are ready to play with backgrounds, take a look at Background and BackgroundFactory classes.

----------------------------------------------------------
please click 'Accept Solution' on posts that provide the solution to the question you've posted. Don't say "Thanks", press 'Like' button instead!
Please use plain text.
Contributor
itsandybra
Posts: 28
Registered: ‎09-28-2011
My Carrier: Vodafone

Re: ButtonField didn't show any label

It looks like you are making the buttons too small for the labels to show when you override the setExtent method. You could try changing the font of the label and making it smaller or only placing 3 buttons per row.
Please use plain text.