修复我的界面星币数值显示不正确的问题
This commit is contained in:
parent
95128b64ea
commit
7b53729849
@ -253,12 +253,10 @@ public class MainMeViewHolder extends AbsMainViewHolder implements OnItemClickLi
|
||||
} else {
|
||||
coin.setText(coins);
|
||||
}
|
||||
BigDecimal yuanbao = new BigDecimal(yuanbaos);
|
||||
String yuanbaoStr = String.valueOf(yuanbao.intValue());
|
||||
if (yuanbaoStr.length() > 9) {
|
||||
star_coin.setText(yuanbaoStr.substring(0, yuanbaoStr.length() - 6) + "M");
|
||||
} else if (yuanbaoStr.length() > 7) {
|
||||
star_coin.setText(yuanbaoStr.substring(0, yuanbaoStr.length() - 3) + "K");
|
||||
if (yuanbaos.length() > 9) {
|
||||
star_coin.setText(yuanbaos.substring(0, yuanbaos.length() - 6) + "M");
|
||||
} else if (yuanbaos.length() > 7) {
|
||||
star_coin.setText(yuanbaos.substring(0, yuanbaos.length() - 3) + "K");
|
||||
} else {
|
||||
star_coin.setText(yuanbaos);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user