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

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


             */
            iconField.setSpace(5, 5);

            configScreen = new ConfigurationScreen();

            setTitle(new LabelField(sdh.getLanguage("sync4j-bb-syncclient")));

            add(new LabelField(sdh.getLanguage("goto-menu-for-changing")));
            add(new LabelField(sdh.getLanguage("or-to-synchronize")));
            add(iconField);
        }
View Full Code Here


         */
        public ConfigurationScreen() {
            StaticDataHelper sdh = new StaticDataHelper() ;
            Configuration c = new Configuration() ;
           
            setTitle(new LabelField(sdh.getLanguage("configure-sync4j-bb")));

            Log.debug("Username:" + c.userName);
            Log.debug("Sync Calendar: " + c.syncCalendar);
           
            userNameField           = new BasicEditField
View Full Code Here

        _foreground = new ForegroundManager();
       
       
       
        LabelField header = new LabelField( "Choose a style from the list below:" );
        header.setMargin( 15, 5, 0, 20 );
        _foreground.add( header );
       
       
        ListStyleButtonSet buttonSet = new ListStyleButtonSet();
       
View Full Code Here

        image.setCommandAction(new ThumbnailClick(data));
        data.setBitmapField(image);
        resultsList.add(image);
        // Text column
        VerticalFieldManager vfm = new VerticalFieldManager();
        vfm.add(new LabelField(data.getTitle(), LabelField.NON_FOCUSABLE));
        vfm.add(new LabelField(data.getDescription(), LabelField.USE_ALL_HEIGHT | LabelField.NON_FOCUSABLE
            | LabelField.ELLIPSIS));
        resultsList.add(vfm);
        // Break
        resultsList.add(new NullField(NullField.NON_FOCUSABLE));
        resultsList.add(new SeparatorField());
View Full Code Here

   
    add(modeField);   
    add(new SeparatorField());
    add(retryFactorField);
    add(new SeparatorField());
    add(new LabelField("[All values in seconds]", LabelField.HCENTER));   
    add(new SeparatorField());
    add(trackingIntervalField);   
    add(new SeparatorField());
    add(gpsTimeoutField);
    add(new SeparatorField());
View Full Code Here

  /**
   * Creates a new MyScreen object
   */
  public SocialScreen() {
    setBorder(BorderFactory.createBitmapBorder(new XYEdges(9, 9, 9, 9), Bitmap.getBitmapResource("border.png")));
    setTitle(new LabelField("(: The Social App :)", DrawStyle.HCENTER|Field.FIELD_HCENTER))

    filePickButton = new ButtonField("Photo Share", Field.FIELD_HCENTER) {
      protected boolean navigationClick(int status, int time) {
        FilePicker picker = FilePicker.getInstance();
        picker.setFilter(".jpg:.png");
View Full Code Here

    }

    private void emulateSmartCard() {
        icon = new BitmapField(sc_icon);
        icon_row.add(icon);
        icon_row.add(new LabelField(" - emulating smart card"));
        add(icon_row);
//        mi_response.setCommandContext(this);
//        mi_response.setCommand(new Command(new ResponseTextCommand()));
//        addMenuItem(mi_response);
View Full Code Here

    }

    private void emulateSmartCard() {
        icon = new BitmapField(sc_icon);
        icon_row.add(icon);
        icon_row.add(new LabelField(" - emulating smart card"));
        add(icon_row);
        mi_response.setCommandContext(this);
        mi_response.setCommand(new Command(new ResponseTextCommand()));
        addMenuItem(mi_response);
        startEmulationOfISO14443ATarget();
View Full Code Here

    }

    private void emulateReader() {
        icon = new BitmapField(reader_icon);
        icon_row.add(icon);
        icon_row.add(new LabelField(" - emulating reader"));
        add(icon_row);
        startDetectionListener(_detectionListener);
    }
View Full Code Here

    }

    private void indicateSender() {
        icon = new BitmapField(snd_icon);
        icon_row.add(icon);
        icon_row.add(new LabelField(" - LLCP sender"));
        add(icon_row);
    }
View Full Code Here

TOP

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

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.