Saturday, 26 January 2019

Format currency in Android like SkuDetails' getPrice method

I'm trying to convert a float number to a currency string in a similar format returned by SkuDetail's getPrice method, for reference it returns a string like this 1 234,56 Ft

I've tried

    NumberFormat format = NumberFormat.getCurrencyInstance();
    format.setCurrency(Currency.getInstance("HUF"));
    format.format(12345.67)

But it returns HUF1,2345.67

Is there any way to reach similar result to the getPrice method?



from Format currency in Android like SkuDetails' getPrice method

No comments:

Post a Comment