Package net.rim.device.api.lbs.picker

Examples of net.rim.device.api.lbs.picker.LocationPicker


         *      Landmark)
         */
        public void locationPicked(final LocationPicker.Picker picker,
                final Landmark location) {
            if (picker instanceof LocationPicker) {
                final LocationPicker locationPicker = (LocationPicker) picker;
                locationPicker.close();
            }
            if (location != null) {
                _nameLabel.setText("Location name: " + location.getName());
                _descLabel.setText("Description: " + location.getDescription());

View Full Code Here

TOP

Related Classes of net.rim.device.api.lbs.picker.LocationPicker

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.