如何在Android中格式化國(guó)際貨幣?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。

class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
textView1.text = formatCurrency(1f, CURRENCY_US_DOLLARS, LANGUAGE_ENGLISH, COUNTRY_US)
textView2.text = formatCurrency(1f, CURRENCY_US_DOLLARS, LANGUAGE_ENGLISH, COUNTRY_CANADA)
textView3.text = formatCurrency(1f, CURRENCY_US_DOLLARS, LANGUAGE_ENGLISH, COUNTRY_AUSTRALIA)
}
private fun formatCurrency(amount: Float, currency: String, language: String, country: String) =
currencyInLocale(currency, language, country).format(amount)
private fun currencyInLocale(
currencyCode: String,
language: String,
country: String = "",
variant: String = ""): NumberFormat =
Locale(language, country, variant).let {
NumberFormat.getCurrencyInstance(it).apply {
currency = Currency.getInstance(currencyCode)
}
}
companion object {
private const val CURRENCY_US_DOLLARS: String = "USD"
private const val LANGUAGE_ENGLISH: String = "EN"
private const val COUNTRY_US: String = "US"
private const val COUNTRY_CANADA: String = "CA"
private const val COUNTRY_AUSTRALIA: String = "AU"
}
}關(guān)于如何在Android中格式化國(guó)際貨幣問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
分享文章:如何在Android中格式化國(guó)際貨幣-創(chuàng)新互聯(lián)
文章分享:http://chinadenli.net/article2/hceic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、標(biāo)簽優(yōu)化、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站制作、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容