EditText实现金额格式化

DecimalFormat df = new DecimalFormat("0.00");//格式化小数
String money = df.format(v);//返回的是String类型

你可能感兴趣的:(EditText实现金额格式化)