我建立了一个简单的文本编辑器,我还添加了阅读百分比。我认为一切正常(在我的手机和 3 个模拟器上),但在其他设备上崩溃。
我不明白有什么问题。有什么帮助吗?
public void perc(){
float perc3;
perc3=((a)*100)/(float)b;
NumberFormat numberFormat = DecimalFormat.getInstance();
numberFormat.setMaximumFractionDigits(2);
String formattedText = numberFormat.format(perc3);
perc= new Double(formattedText);
}