Teams Winter 2011/team5/lab4/tutorial
Step 1 - Download BlackBerry Plug-in for Eclipse and Simulator from here: http://us.blackberry.com/developers/javaappdev/
Step 2 - Download BlackBerry Plug-in for Eclipse and Simulator from here: http://us.blackberry.com/developers/javaappdev/
Step 3 - Unzip the package in a location like: .../eclipse/mobile/blackberry
Step 4 - Start Eclipse, and Go to File > New > BlackBerry Project
== Step 5 - Enter the Project Name and ensure the project specific JRE selected is BlackBerry JRE.
Click next ==
Step 6 - Click Next and leave the default Java settings as it is
Step 7 - Click Next and select an Empty Application to start developing
Step 8 - Click Finish and on the Application Tab, enter the Title for your application
Step 9 - Expand the file structure in the Package Explorer window and examine the structure already created for you
Step 10 - src folder will contain your package(s) and all your application code files.
Step 11 - res folder is the resources folder which can contain additional resources your app might use - like images, audio or video files, or the app icon
Step 12 - Expand your src folder and double click the .java file to begin editing
== Step 13 - It will look like it does in the screenshot below. It will have to be edited to make it
the start screen where you app starts == == Step 14 - This is done by extending UiApplication class, which will co-ordinate the screen that is
currently on top of the screen stack == == Step 15 - We have also added some code to create a new instance of the application and make the
currently running thread the application's event dispatch thread in the main function == == Step 16 - In the constructor of the App's main class file, we push a new screen onto the top of
the screen stack == == Step 17 - The name of the new class created, which will be the first screen of the app is
specificed int he pushScreen method ==