Added in API level 30

UnlocalizedNumberFormatter

open class UnlocalizedNumberFormatter : NumberFormatterSettings<UnlocalizedNumberFormatter!>
kotlin.Any
   ↳ android.icu.number.NumberFormatterSettings<android.icu.number.UnlocalizedNumberFormatter>
   ↳ android.icu.number.UnlocalizedNumberFormatter

A NumberFormatter that does not yet have a locale. In order to format numbers, a locale must be specified. Instances of this class are immutable and thread-safe.

Summary

Public methods
open LocalizedNumberFormatter!
locale(locale: Locale!)

Associate the given locale with the number formatter.

open LocalizedNumberFormatter!
locale(locale: ULocale!)

ULocale version of the locale(java.util.Locale) setter above.

Inherited functions

Public methods

locale

Added in API level 30
open fun locale(locale: Locale!): LocalizedNumberFormatter!

Associate the given locale with the number formatter. The locale is used for picking the appropriate symbols, formats, and other data for number display.

To use the Java default locale, call Locale.getDefault():

NumberFormatter.with(). ... .locale(Locale.getDefault())
  
Parameters
locale Locale!: The locale to use when loading data for number formatting.
Return
LocalizedNumberFormatter! The fluent chain

locale

Added in API level 30
open fun locale(locale: ULocale!): LocalizedNumberFormatter!

ULocale version of the locale(java.util.Locale) setter above.

Parameters
locale ULocale!: The locale to use when loading data for number formatting.
Return
LocalizedNumberFormatter! The fluent chain

See Also