“Formato da moeda Kotlin” Respostas de código

Formato da moeda Kotlin

val numberFormat = NumberFormat.getCurrencyInstance()  
numberFormat.setMaximumFractionDigits(0);
val convert = numberFormat.format(1000000)
    
println(convert)

// result: $1,000,000
Apollo

Formato da moeda Kotlin


val locale = Locale.getDefault()
val numberFormat = NumberFormat.getCurrencyInstance(locale)
println(numberFormat.currency)  // on my device in Italy prints: EUR
    
val symbol = numberFormat.currency?.symbol
println(symbol) // on my device in Italy prints: € 



var pound = Currency.getInstance("GBP");
val symbol = pound.symbol
println(symbol) // prints £
simone mapelli

Respostas semelhantes a “Formato da moeda Kotlin”

Perguntas semelhantes a “Formato da moeda Kotlin”

Mais respostas relacionadas para “Formato da moeda Kotlin” em Kotlin

Procure respostas de código populares por idioma

Procurar outros idiomas de código