2
edits
Changes
→Development Fundamentals
The MainScreen class defines the full screen providing features common to standard RIM device applications.
<source lang="java">
/**
* behavior for BlackBerry GUI applications.
*/
final class HelloWorldScreen extends MainScreen {
</source>
|-
| [[File:10bb.png|left|600px]] ||
Main screen objects could contain a title section, a separator element, and a main scrollable section.
<source lang="java">
final class HelloWorldScreen extends MainScreen {
/**
// Set the displayed title of the screen
setTitle("Eclipse Course");
</source>
|}
----------