python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
(Android) Unable to show dot as thousand separator in edit text using a pattern
Here, I have to show currency decimal separator and thousands separators as per the given input like:
private var decimalSeparator: Char = '.'
private var thousandSeparator: String = ",&q...
Kiran
Votes: 0
Answers: 2
Displaying decimal values with a predefined format
I am getting below sample values from my calculation result and I have to display is in 2 decimal points without rounding it.
-0.00123,
-2.222154,
-23.154,
-2.13,
-0.10001,
-10.0012,
-1.0023,
0.23,
0....

Jaimin Modi
Votes: 0
Answers: 2
Decimal Format Value customisation issue
I am using below code to convert 79.00538 to 79.00
val df = DecimalFormat("###.##")
df.roundingMode = RoundingMode.DOWN
val retrunValue= df.format(79.00538)
But it give me 79 instead of 79....

Jaimin Modi
Votes: 0
Answers: 1