-1
I use Maskformatter lib to format Edittext fields. But now I’m getting a value of an int variable and wanted to format it in the value of currency R$.
Example: in the variable containing 1000 Format: 10,00
Using lib I can’t because it only accepts Edittext.
I am using the result of this variable and displaying in a Textview.
A variable containing 1000 (thousand) would be correct to format: R$ 1000,00 right?
– Laerte
@Laerte as in the example, let’s assume that in the variable the value was thirty-four real. But in my textview it is displaying 3400. Formatting would like him to put the comma, getting 34.00.
– Flávio