TextView中具有一个小数点的百分比符号

时间:2015-06-02 14:19:10

标签: android textview symbols

如何在Android中将百分比符号设置为带有一个小数点的TextView?  我尝试过使用unicode符号,但它无效。

textES.setText(String.format("%.1f \u0025",percentage));

1 个答案:

答案 0 :(得分:0)

你试过这个吗?

textES.setText(String.format("%.1f",percentage) + "%");