Open main menu

CDOT Wiki β

Changes

BlackBerry Concepts

379 bytes added, 09:49, 22 February 2011
Development Fundamentals
The MainScreen class defines the full screen providing features common to standard RIM device applications.
Main screen objects contain a title section, a separator element, and a main scrollable section.
<source lang="java">/** * A class extending the MainScreen class, which provides default standard * behavior for BlackBerry GUI applications. */final class HelloWorldScreen extends MainScreen { /** * Creates a new HelloWorldScreen object */ HelloWorldScreen() { // Set the displayed title of the screen setTitle("Eclipse Course");</source>
|}
----------