Package net.rim.device.api.ui.component

Examples of net.rim.device.api.ui.component.SeparatorField


        // Remove existing UI components
        deleteAll();

        // Add all output UI components
        add(_supportedSourcesField);
        add(new SeparatorField());
        add(_availableSourcesField);
        add(new SeparatorField());
        add(new SeparatorField());
        add(_currentModeField);
        add(new SeparatorField());
        add(_currentSatellitesCountField);
        add(new SeparatorField());
        add(_currentLocationField);
        add(new SeparatorField());
        add(_currentAverageSatelliteSignalField);
        add(new SeparatorField());
        add(_currentDataSourceField);
        add(new SeparatorField());
        add(_currentErrorField);
        add(new SeparatorField());
        add(_currentStatusField);
        add(new SeparatorField());
        add(new SeparatorField());
        add(_numberUpdatesField);
        add(new SeparatorField());
        add(_numberAssistedUpdatesField);
        add(new SeparatorField());
        add(_numberUnassistedUpdatesField);
        add(new SeparatorField());
        add(_numberValidUpdatesField);
        add(new SeparatorField());
        add(_numberInvalidUpdatesField);
        add(new SeparatorField());
        add(new SeparatorField());
        add(_log);
    }
View Full Code Here


     * Displays the message
     */
    void displayMessage() {
        displayMessageInformation();

        add(new SeparatorField());

        displayHeader();

        add(new SeparatorField());

        displayMessageBody();
    }
View Full Code Here

        }

        // Now that the body parts have been displayed, display the queued
        // fields while separating them by inserting a separator field.
        for (int index = 0; index < delayedFields.size(); index++) {
            add(new SeparatorField());
            addTextFieldToTableAndScreen((TextField) delayedFields
                    .elementAt(index), BODY);
        }
    }
View Full Code Here

        _instructions = new LabelField("", Field.NON_FOCUSABLE);

        // Add components to screen
        add(sendFireForgetButton);
        add(new SeparatorField());
        add(_instructions);
    }
View Full Code Here

        _editField =
                new EditField("",
                        "Select text in this field and invoke the send menu");
        add(_editField);

        add(new SeparatorField());

        // Add label for the TableView which will be used to demonstrate the
        // Send Menu API in the context of a group of files.
        final LabelField rootDirectorylabelField =
                new LabelField("Contents of " + ROOT, Field.FIELD_HCENTER);
View Full Code Here

        add(backButton);
        add(_isLocal);
        add(_pathField);
        add(_uriSenderField);
        add(postButton);
        add(new SeparatorField());
        add(instructions);
    }
View Full Code Here

                    Field.USE_ALL_WIDTH));

            _infoField = new RichTextField();
            _mainScreen.add(_infoField);

            _mainScreen.add(new SeparatorField());

            _imageField = new RichTextField();
            _mainScreen.add(_imageField);

            // Start the listening thread
View Full Code Here

                new LabelField(_resources.getString(APPLICATION_TITLE));
        setTitle(title);

        add(new RichTextField(_resources.getString(FIELD_TITLE),
                Field.NON_FOCUSABLE));
        add(new SeparatorField());
        add(new LabelField());

        final String choices[] = _resources.getStringArray(FIELD_COUNTRIES);
        _choiceField =
                new ObjectChoiceField(_resources.getString(FIELD_CHOICE),
View Full Code Here

        _citiesField =
                new BasicEditField(_resources.getString(FIELD_CITIES), null,
                        50, Field.NON_FOCUSABLE);

        add(_countryField);
        add(new SeparatorField());
        add(_popField);
        add(_langField);
        add(_citiesField);
    }
View Full Code Here

            // Add a subject line
            final EditField subjectField = new EditField("Subject: ", "");
            addTextFieldToTableAndScreen(subjectField, SUBJECT);

            // Add a separator between the body and the headers
            add(new SeparatorField());

            // Add a body field
            final EditField bodyField = new EditField();
            addTextFieldToTableAndScreen(bodyField, BODY);
        } else
        // The message exists so display it
        {
            displayHeader();
            add(new SeparatorField());
            displayMessageBody();
        }
    }
View Full Code Here

TOP

Related Classes of net.rim.device.api.ui.component.SeparatorField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.