标签: android textview symbols
如何在Android中将百分比符号设置为带有一个小数点的TextView? 我尝试过使用unicode符号,但它无效。
textES.setText(String.format("%.1f \u0025",percentage));
答案 0 :(得分:0)
你试过这个吗?
textES.setText(String.format("%.1f",percentage) + "%");