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

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


        _editField.setBorder(BorderFactory.createRoundedBorder(new XYEdges(4,
                4, 4, 4), 0xc6c6c6, Border.STYLE_SOLID));
        fieldSetTwo.add(new LabelField("Input: "));
        fieldSetTwo.add(_editField);
        fieldSetTwo
                .add(new RichTextField(
                        "This is the OptionsProviderDemo implemented using the FieldSet class"));
        fieldSetTwo.setMargin(2, 5, 5, 5);
        fieldSetTwo.setBackground(BackgroundFactory
                .createSolidBackground(0x00FFFFFF));
View Full Code Here


                        | ButtonField.CONSUME_CLICK);
        _cellButton.setChangeListener(this);
        hfmButtons.add(_wifiButton);
        hfmButtons.add(_cellButton);

        _rtfDisplay = new RichTextField("Click a button");

        // Add components to screen --------------------------------------------
        add(_urlField);
        add(new SeparatorField());
View Full Code Here

        add(new SeparatorField());

        // Display "Fetching content..." message below the buttons
        _contentsField =
                new RichTextField("Fetching content...", Field.NON_FOCUSABLE);
        add(_contentsField);

        add(new SeparatorField());

        // Start thread to read content
View Full Code Here

        setTitle("Hello World Demo");

        // Add a read only text field (RichTextField) to the screen. The
        // RichTextField is focusable by default. Here we provide a style
        // parameter to make the field non-focusable.
        add(new RichTextField("Hello World!", Field.NON_FOCUSABLE));
    }
View Full Code Here

        _url.setCursorPosition(7);
        _mainScreen.add(_url);

        _mainScreen.add(new SeparatorField());

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

        // Start the helper threads
        _statusThread.start();
        _connectionThread.start();
View Full Code Here

TOP

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

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.