Help Center

Local Navigation

Provide an assistive technology application with access to numeric values

  1. Import the net.rim.device.api.ui.accessibility.AccessibleValue interface.
  2. Create a class that implements the AccessibleValue interface.
    public class GaugeFieldAccessibleValue implements AccessibleValue
    {
        public GaugeFieldAccessibleValue(){
        }
        public int getCurrentAccessibleValue() {
            return _current;
        }
        public int getMaxAccessibleValue() {
            return getValueMax();
        }
        public int getMinAccessibleValue() {
            return getValueMin();
        }        
    }
    

Index


Was this information helpful? Send us your comments.