The AudioNumber class

An AudioNumber object represents a numeric value. To set the value property, you must use a double.

The number can be read out in several different ways, according to the style property inherited from the MediaType superclass. For the AudioNumber class, the style property can have the following values (note that the locale property of the MediaType class may also affect how the number is spoken):

Note that 1 billion is used to mean 1 thousand million in both the en_US and en_GB locales.

The constructor methods for this class are:
AudioNumber()
Constructs an audio number object with a value of zero and a style of Integer. You can set these properties later using the methods setValue() and setStyle().
AudioNumber(double value)
Constructs an audio number object with the specified value and a style of Integer.
AudioNumber(double value, java.lang.String style)
Constructs an audio number object with the specified value and style.
For example:
public class InApp extends WVRApplication {
  // Create an audio number
  public AudioNumber code = new AudioNumber(118257, "Digits");
  .
  .
  .
}