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

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


        public CustomSpinnerPopup() {
            super(new VerticalFieldManager(), Screen.DEFAULT_CLOSE);
            final String[] choices =
                    { "New York", "Paris", "Barcelona", "Beijing", "Moscow",
                            "Brasilia", "Melbourne" };
            _spinBoxField = new TextSpinBoxField(choices);
            _spinBoxField.setVisibleRows(3);
            add(new LabelField("Choose city:"));
            add(new SeparatorField());
            final HorizontalFieldManager hfm =
                    new HorizontalFieldManager(Field.FIELD_HCENTER);
View Full Code Here

TOP

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

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.