我NumberFormat.getPercentInstance()
用于格式化整数以获得100 %。
我使用的代码是
NumberFormat mProgressPercentFormat = NumberFormat.getPercentInstance();
mProgressPercentFormat.setMaximumFractionDigits(0);
String text = mProgressPercentFormat.format(100);
结果: 100 %
预期结果: % 100
谁能告诉我如何在 NumberFormat 本身或任何其他替代解决方案中进行格式化。
My main goal to switch % infront of number based on Locale change.
例如:英语:100 %
阿拉伯语:% 100