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

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


        add(atomBtn);
        add(jsonBtn);
        add(rssBtn);
        add(soapBtn);
        add(xmlBtn);
        add(new SeparatorField());
        add(instructions);
    }
View Full Code Here


        setTitle(new LabelField("Socket Demo"));

        add(new RichTextField(
                "Enter local host name in the field below and select 'Go' from the menu.",
                Field.NON_FOCUSABLE));
        add(new SeparatorField());

        // Need to get the local host name from the user because access to
        // 'localhost' and 127.0.0.1 is restricted.
        _hostField = new EditField("Local Host: ", "");
        add(_hostField);
View Full Code Here

        setPadding(getPaddingTop(), 0, getPaddingBottom(), 0);
        setMargin(getMarginTop(), 0, getMarginBottom(), 0);

        add(new RichTextField("Upload " + _fileHolder.getFileName(),
                Field.NON_FOCUSABLE | Field.FIELD_LEFT));
        add(new SeparatorField());

        _emailEdit = new BasicEditField("Recipient Email: ", "");
        add(_emailEdit);

        _okButton =
View Full Code Here

        // Add fields to manager
        final VerticalFieldManager vfm =
                new VerticalFieldManager(VERTICAL_SCROLL);
        vfm.add(_listField);
        vfm.add(new SeparatorField());
        vfm.add(_addButton);
        vfm.add(new SeparatorField());
        vfm.add(_addFromFileButton);
        vfm.add(new SeparatorField());
        vfm.add(_publishButton);
        vfm.add(new SeparatorField());
        vfm.add(_searchButton);

        add(vfm);
    }
View Full Code Here

        // Add UI components to screen
        add(_uriSenderField);
        add(postButton);
        add(_formattedMsgContentField);
        add(new SeparatorField());
        add(_msgContentField);
    }
View Full Code Here

        titleField.setFont(titleField.getFont().derive(
                Font.BOLD | Font.UNDERLINED));
        this.add(titleField);

        if (text != null) {
            this.add(new SeparatorField());
            this.add(new LabelField(text));
        }

        this._manager = manager;
        this._scrollAmount = titleField.getFont().getHeight();
View Full Code Here

        setTitle("MMS Demo");
        _addressField =
                new EditField("Destination:", "", MAX_PHONE_NUMBER_LENGTH,
                        BasicEditField.FILTER_PHONE);
        add(_addressField);
        add(new SeparatorField());
        _subjectField = new EditField("Subject:", "");
        add(_subjectField);
        _messageField = new EditField("Message:", "");
        add(_messageField);
        add(new SeparatorField());
        final LabelField attachmentText = new LabelField("Attachments");
        add(attachmentText);

        // Create table components
        _view = new TableView(_app.getMessageParts());
View Full Code Here

        _listField.setCallback(this);

        // Add fields to respective managers
        vfm.add(_listField);
        scvfm.add(_searchInput);
        scvfm.add(new SeparatorField());
        scvfm.add(vfm);
        add(scvfm);
    }
View Full Code Here

        final RichTextField infoField =
                new RichTextField(
                        "Type a misspelled word into the test field (eg. blackbery).  Select menu items to perform spell check operations.",
                        Field.NON_FOCUSABLE);
        add(infoField);
        final SeparatorField separator = new SeparatorField();
        add(separator);
        _testField = new TestField("Test Field: ", "");
        add(_testField);

        _spellCheckItem =
View Full Code Here

                "Swipe the screen or use the menu to clear the text"));
        // #else
        add(new RichTextField("Use the menu to clear the text"));
        // #endif

        add(new SeparatorField());

        _textArea = new BasicEditField("Text: ", "");
        add(_textArea);
    }
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.