我需要在java中安装我的Android应用程序。
我有一个计时器,用于检查当前得分是否优于保存的最佳得分并相应保存
以下是代码:
if(sec< bestSec){
Main.settings= Main.context.getSharedPreferences(GameConstants.PREFS_NAME, Main.MODE_WORLD_WRITEABLE);
Main.editor= Main.settings.edit();
if(mSec<10){
Main.editor.putString("best", sec+"."+"0"+mSec);
}else{
Main.editor.putString("best", sec+"."+mSec);
}
Main.editor.putInt("bestSec", sec);
Main.editor.putInt("bestMSec", mSec);
Main.editor.commit();
}else if(sec== bestSec){
if(mSec< bestMSec){
Main.settings= Main.context.getSharedPreferences(GameConstants.PREFS_NAME, Main.MODE_WORLD_WRITEABLE);
Main.editor= Main.settings.edit();
if(mSec<10){
Main.editor.putString("best", sec+"."+"0"+mSec);
}else{
Main.editor.putString("best", sec+"."+mSec);
}
Main.editor.putInt("bestSec", sec);
Main.editor.putInt("bestMSec", mSec);
}
}
我的最高分是:例如12,89秒。 如果我做11,20或11,92它保存得很好,但是如果我做12,45秒它就不会保存。
谢谢你的帮助!
答案 0 :(得分:1)
您应该使用double或float值来正确比较它们。如果要将十进制值转换为int,则12,89和12,45将等于12.数字的小数部分将被忽略。
使用双精度或浮点数进行有效比较,并使用editor.putFloat()
保存值。