*value.getFloat("Value_Quotient", quotient_Float)==null* になると問題が発生するようです。これを修正するにはどうすればよいですか?
private void Store() {
quotient_Float = posture_error/time;
if(value.getFloat("Value_Quotient", quotient_Float)==null || quotient_Float < value.getFloat("Value_Quotient", quotient_Float))
{
editor.putFloat("Value_Quotient", quotient_Float);
editor.commit();
}
}