Skip to main content

Blackberry Creating Toolbar Part 2

This is part 2 of Creating Toolbar on Blackberry.

Read Part 1

Requirements :

- Blackberry OS 5

UPDATE 4-29-2012

After few styling and researching i managed to create background color. after i think its looking quite alright without color gradient or anything, its time to try on storm / BB 9550.

after that i found a problem when the Display is tilted into Landscape the layout width doesn't redraw / synchronize automatically. but solution found on http://www.stackoverflow.com.

here's the link if you want to know : http://stackoverflow.com/questions/7789734/auto-rotation-on-blackberry-programming

anyway here is my code



import net.rim.device.api.system.Display;
import net.rim.device.api.ui.Color;
import net.rim.device.api.ui.DrawStyle;
import net.rim.device.api.ui.Field;
import net.rim.device.api.ui.FieldChangeListener;
import net.rim.device.api.ui.Font;
import net.rim.device.api.ui.FontFamily;
import net.rim.device.api.ui.Graphics;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.component.ButtonField;
import net.rim.device.api.ui.component.Dialog;
import net.rim.device.api.ui.component.LabelField;
import net.rim.device.api.ui.container.GridFieldManager;
import net.rim.device.api.ui.container.MainScreen;
import net.rim.device.api.ui.decor.BackgroundFactory;

public class HeaderTest extends MainScreen {
    GridFieldManager gfm ;
    /**
     * 
     */
    public HeaderTest() {
        super(MainScreen.VERTICAL_SCROLL | MainScreen.VERTICAL_SCROLLBAR);
        // TODO Auto-generated constructor stub
        HeaderStyle1();
        
    }
    
    public void HeaderStyle1(){
        /*
         * This Style Should be Consist <backButton> ScreenName <otherButton>
         * And Using GridFieldManager
         */
        
        gfm = new GridFieldManager(1, 3, 0);
        //gfm.setBorder(BorderFactory.createSimpleBorder(new XYEdges(0,0,0,0),Border.STYLE_DASHED));
        
        int columnWidth1 = (int) ((Display.getWidth() * 0.25) - gfm.getColumnPadding());
        int columnWidth2 = (int) ((Display.getWidth() * 0.5) - gfm.getColumnPadding());
        int columnWidth3 = (int) ((Display.getWidth() * 0.25) - gfm.getColumnPadding());
        //int totalCol = gfm.getColumnCount();
//         for(int i = 0; i < totalCol; i++) {
//            gfm.setColumnProperty(i, GridFieldManager.FIXED_SIZE, columnWidth);
//         }
        gfm.setBackground(BackgroundFactory.createSolidBackground(0xA3080C));
        gfm.setColumnProperty(0, GridFieldManager.FIXED_SIZE, columnWidth1);
        gfm.setColumnProperty(1, GridFieldManager.FIXED_SIZE, columnWidth2);
        gfm.setColumnProperty(2, GridFieldManager.FIXED_SIZE, columnWidth3);
        gfm.isStyle(GridFieldManager.USE_ALL_WIDTH);
        ButtonField backButton = new ButtonField("Back",ButtonField.CONSUME_CLICK | DrawStyle.ELLIPSIS);
        gfm.add(backButton);
        
        LabelField labelTitle = new LabelField("Screen Name"){

            protected void paint(Graphics graphics) {
                // TODO Auto-generated method stub
                graphics.setColor(Color.WHITE);
                super.paint(graphics);
            }
            
        };
        Font myFont = labelTitle.getFont();
        FontFamily fontFam;
        try {
            fontFam = FontFamily.forName("System");
            myFont = fontFam.getFont(Font.BOLD,20);
            
        } catch (ClassNotFoundException e) {
            // TODO Auto-generated catch block
            //e.printStackTrace();
        }
        //myFont.
        labelTitle.setFont(myFont);
        
        gfm.add(labelTitle);
        ButtonField cartButton = new ButtonField("Cart",ButtonField.CONSUME_CLICK | DrawStyle.ELLIPSIS);
        gfm.add(cartButton);
        
        backButton.setChangeListener(new FieldChangeListener() {
            
            public void fieldChanged(Field field, int context) {
                // TODO Auto-generated method stub
                Dialog.inform("Back Button is Pushed");
            }
        });
        
        cartButton.setChangeListener(new FieldChangeListener() {
            
            public void fieldChanged(Field field, int context) {
                // TODO Auto-generated method stub
                Dialog.inform("Cart Button is Pushed");
            }
        });
        add(gfm);
    }
    
    public void refreshList(){
        if(gfm != null){
            delete(gfm);
            HeaderStyle1();
        }
    }
    
    public boolean onClose() {
        setDirty(false);
        return super.onClose();
    }

    protected void sublayout(int width, int height) {
         int displayWidth = Display.getWidth();
         int displayHeight = Display.getHeight();

         switch (Display.getOrientation()) {
         case Display.ORIENTATION_LANDSCAPE:
             UiApplication.getUiApplication().invokeLater(new Runnable()
             {
                 public void run()
                 {
                     Dialog.alert("Screen orientation is landscape");
                     refreshList();
                     // here you need to change your uI code as you want to do in for landscape mode
                     // you may need to delete and add the UI comps manually
                     // if the components added to absolute layout then just refresh the screen it will auto adjust with your new screen size 
                 }
             });

             break;
         case Display.ORIENTATION_PORTRAIT:
             UiApplication.getUiApplication().invokeLater(new Runnable()
             {
                 public void run()
                 {
                     Dialog.alert("Screen orientation is PORTRAIT:");
                     refreshList();
                     // here you need to change your uI code as you want to do in for PORTRAIT mode
                     // you may need to delete and add the UI comps manually
                     // if the components added to absolute layout then just refresh the screen it will auto adjust with your new screen size 

                 }
             });
             break;
         }
         super.sublayout(displayWidth, displayHeight);
         setExtent(displayWidth, displayHeight);
        
    }
    
}


and here is the result


UPDATE 4-30-2012 :

After this few period of research i don't know if i can do the gradient color. anyway RIM Developer have already created advance UI to use. they already at git hub. so if you wanna grab it just use GIT Client.

i'm using HorizontalListStyleButtonSet from
https://github.com/blackberry/Samples-for-Java/tree/master/Advanced%20UI
don't forget to add few class that support HorizontalListStyleButtonSet
JustifiedEvenlySpacedHorizontalFieldManager.java
ListStyleButtonField.java

the result is like this



the code is

package mypackage.screen;

import mypackage.HorizontalListStyleButtonSet;
import mypackage.ListStyleButtonField;
import net.rim.device.api.system.Display;
import net.rim.device.api.ui.Color;
import net.rim.device.api.ui.DrawStyle;
import net.rim.device.api.ui.Field;
import net.rim.device.api.ui.FieldChangeListener;
import net.rim.device.api.ui.Font;
import net.rim.device.api.ui.FontFamily;
import net.rim.device.api.ui.Graphics;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.component.ButtonField;
import net.rim.device.api.ui.component.Dialog;
import net.rim.device.api.ui.component.LabelField;
import net.rim.device.api.ui.container.GridFieldManager;
import net.rim.device.api.ui.container.MainScreen;
import net.rim.device.api.ui.decor.BackgroundFactory;

public class HeaderTest extends MainScreen {
    GridFieldManager gfm ;
    HorizontalListStyleButtonSet exampleSet;
    /**
     * 
     */
    public HeaderTest() {
        super(MainScreen.VERTICAL_SCROLL | MainScreen.VERTICAL_SCROLLBAR);
        // TODO Auto-generated constructor stub
        HeaderStyle1();
        ListStyle();
        
    }
    
    public void HeaderStyle1(){
        /*
         * This Style Should be Consist <backButton> ScreenName <otherButton>
         * And Using GridFieldManager
         */
        
        gfm = new GridFieldManager(1, 3, 0);
        //gfm.setBorder(BorderFactory.createSimpleBorder(new XYEdges(0,0,0,0),Border.STYLE_DASHED));
        
        int columnWidth1 = (int) ((Display.getWidth() * 0.25) - gfm.getColumnPadding());
        int columnWidth2 = (int) ((Display.getWidth() * 0.5) - gfm.getColumnPadding());
        int columnWidth3 = (int) ((Display.getWidth() * 0.25) - gfm.getColumnPadding());
        //int totalCol = gfm.getColumnCount();
//         for(int i = 0; i < totalCol; i++) {
//            gfm.setColumnProperty(i, GridFieldManager.FIXED_SIZE, columnWidth);
//         }
        gfm.setBackground(BackgroundFactory.createSolidBackground(0xA3080C));
        gfm.setColumnProperty(0, GridFieldManager.FIXED_SIZE, columnWidth1);
        gfm.setColumnProperty(1, GridFieldManager.FIXED_SIZE, columnWidth2);
        gfm.setColumnProperty(2, GridFieldManager.FIXED_SIZE, columnWidth3);
        gfm.isStyle(GridFieldManager.USE_ALL_WIDTH);
        ButtonField backButton = new ButtonField("Back",ButtonField.CONSUME_CLICK | DrawStyle.ELLIPSIS);
        gfm.add(backButton);
        
        LabelField labelTitle = new LabelField("Screen Name"){

            protected void paint(Graphics graphics) {
                // TODO Auto-generated method stub
                graphics.setColor(Color.WHITE);
                super.paint(graphics);
            }
            
        };
        Font myFont = labelTitle.getFont();
        FontFamily fontFam;
        try {
            fontFam = FontFamily.forName("System");
            myFont = fontFam.getFont(Font.BOLD,20);
            
        } catch (ClassNotFoundException e) {
            // TODO Auto-generated catch block
            //e.printStackTrace();
        }
        //myFont.
        labelTitle.setFont(myFont);
        
        gfm.add(labelTitle);
        ButtonField cartButton = new ButtonField("Cart",ButtonField.CONSUME_CLICK | DrawStyle.ELLIPSIS);
        gfm.add(cartButton);
        
        backButton.setChangeListener(new FieldChangeListener() {
            
            public void fieldChanged(Field field, int context) {
                // TODO Auto-generated method stub
                Dialog.inform("Back Button is Pushed");
            }
        });
        
        cartButton.setChangeListener(new FieldChangeListener() {
            
            public void fieldChanged(Field field, int context) {
                // TODO Auto-generated method stub
                Dialog.inform("Cart Button is Pushed");
            }
        });
        
            add(gfm);
        
    }
    
    public void refreshList(){
        if(gfm != null){
            int myIndex = gfm.getIndex();
            delete(gfm);
            HeaderStyle1();
        }
        if(exampleSet != null) {
            delete(exampleSet);
            ListStyle();
        }
    }
    
    public boolean onClose() {
        setDirty(false);
        return super.onClose();
    }

    protected void sublayout(int width, int height) {
         int displayWidth = Display.getWidth();
         int displayHeight = Display.getHeight();

         switch (Display.getOrientation()) {
         case Display.ORIENTATION_LANDSCAPE:
             UiApplication.getUiApplication().invokeLater(new Runnable()
             {
                 public void run()
                 {
                     Dialog.alert("Screen orientation is landscape");
                     refreshList();
                     // here you need to change your uI code as you want to do in for landscape mode
                     // you may need to delete and add the UI comps manually
                     // if the components added to absolute layout then just refresh the screen it will auto adjust with your new screen size 
                 }
             });

             break;
         case Display.ORIENTATION_PORTRAIT:
             UiApplication.getUiApplication().invokeLater(new Runnable()
             {
                 public void run()
                 {
                     Dialog.alert("Screen orientation is PORTRAIT:");
                     refreshList();
                     // here you need to change your uI code as you want to do in for PORTRAIT mode
                     // you may need to delete and add the UI comps manually
                     // if the components added to absolute layout then just refresh the screen it will auto adjust with your new screen size 

                 }
             });
             break;
         }
         super.sublayout(displayWidth, displayHeight);
         setExtent(displayWidth, displayHeight);
        
    }
    
    
    public void ListStyle(){
        exampleSet = new HorizontalListStyleButtonSet();
        ListStyleButtonField myBackBtn = new ListStyleButtonField( "Back", DrawStyle.HCENTER ) ;
        myBackBtn.setChangeListener(new FieldChangeListener() {
            
            public void fieldChanged(Field field, int context) {
                // TODO Auto-generated method stub
                Dialog.inform("Back Button Clicked");
            }
        });
        exampleSet.add( myBackBtn );
        exampleSet.add( new ListStyleButtonField( "Screen Name", DrawStyle.HCENTER ) );
        exampleSet.add( new ListStyleButtonField( "Cart", DrawStyle.HCENTER ) );
        add( exampleSet );
    }
}



as you can see I'm still using the same code as before. so you'll notice the difference.


P.S I'll update this soon i got the solution and i hope with a cool layout.

Read Part 1

Go to Part 3

Comments

Popular posts from this blog

JavaScript Real Time Calculation

I've been around looking for javascript that can do Real Time Calculation. javascript real time calculation, javascript real time calculation textbox. by some lucky keywords i found this code. this is exactly the code that i want. it really do the real time calculation. and it doesn't need onChange or OnBlur function. Just try it Example + = this is the javascript code <script type='text/javascript' > function startCalc(){   interval = setInterval("calc()",1); } function calc(){   one = document.autoSumForm.firstBox.value;   two = document.autoSumForm.secondBox.value;   document.autoSumForm.thirdBox.value = (one * 1) + (two * 1); } function stopCalc(){   clearInterval(interval); } </script> this is the html code <form name="autoSumForm">   <input class="right" type=text name="firstBox" value="" onFocus="startCalc();" onBlur="stopCalc();"><br...

iOS 5 Creating eCommerce with Shopping Cart App Part 1

[Created 11-28-2012] it seems like there are tons of tutorial ios and xcode for beginner out there. you can view the list at my post here http://javalearning-adventure.blogspot.com/2012/11/learning-xcode.html that's the link that i always update if i find anything. this tutorial will consist of step by step in creating Shopping Cart App. There will be Browse Product, Shopping Cart, and Checkout Method. I will update these later after i satisfied with the end result. These tutorial will also include web programming using php. but these php will only using basic sample not the very complex with mysql database and everything. these php pages will only creating json output. i think you don't need to learn php and json. you should only learn how to handle json using objective-c. I am still a beginner in xcode and objective-c, its still only 1 month since i started these tutorial. requirements suppose to be iOS 5 with xcode 4. [i will update these later][postponed...

BlackBerry ListField Tutorial Part 3

This Part 3 will consist of Networking, ListField, JSON and Thread. I'm really sorry for pending this part 3. I've been busy making money and still failed. Its just really hard to live in third world country by coding. anyway, There are few Library that you will need creating ListField with JSON data, but we wont touch that area first. we need to learn the basic. * note added : Aug 26 2013 The basic should be : Networking Thread ListField [if i find anything, will be add here]