Android: convert currency symbol into currency code
我正在使用应用内结算,我想将购买记录到 Google Analytics(分析)电子商务中:
-
应用内结算以"数字符号"格式提供价格(例如"1.99 欧元"),我可以从中获取货币符号(例如"欧元"、"£")
-
Google Analytics 电子商务需要货币代码(例如 "EUR"、"GBP")
如何将货币符号转换为货币代码?
- 这篇文章可以帮助你 stackoverflow.com/questions/12694192/locale-currency-symbol
我不确定您是否在实用程序中探索过货币。如果没有,请尝试 http://developer.android.com/reference/java/util/Currency.html
- 是的,我做到了,但我仍然找不到将货币符号转换为货币代码的方法