Merge pull request #2 from ochagovdanil/feature_divide_by_zero_message
Show Toast message instead of printing division by zero error
This commit is contained in:
commit
b430e6e7bf
1 changed files with 14 additions and 11 deletions
|
@ -2,6 +2,7 @@ package com.simplemobiletools.calculator.helpers
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
|
import android.widget.Toast
|
||||||
import com.simplemobiletools.calculator.R
|
import com.simplemobiletools.calculator.R
|
||||||
import com.simplemobiletools.calculator.operation.OperationFactory
|
import com.simplemobiletools.calculator.operation.OperationFactory
|
||||||
|
|
||||||
|
@ -57,19 +58,21 @@ class CalculatorImpl(calculator: Calculator, val context: Context) {
|
||||||
val sign = getSign(lastOperation)
|
val sign = getSign(lastOperation)
|
||||||
|
|
||||||
when {
|
when {
|
||||||
baseValue == 0.0 && secondValue == 0.0 && sign == "/" -> {
|
sign == "√" -> {
|
||||||
setFormula(context.getString(R.string.formula_divide_by_zero_error))
|
setFormula(sign + first)
|
||||||
}
|
}
|
||||||
|
sign == "!" -> {
|
||||||
sign == "√" -> setFormula(sign + first)
|
setFormula(first + sign)
|
||||||
|
}
|
||||||
sign == "!" -> setFormula(first + sign)
|
sign.isNotEmpty() -> {
|
||||||
|
if (secondValue == 0.0 && sign == "/") {
|
||||||
else -> {
|
Toast.makeText(
|
||||||
if (sign.isNotEmpty()) {
|
context,
|
||||||
val formula = first + sign + second
|
context.getString(R.string.formula_divide_by_zero_error),
|
||||||
setFormula(formula)
|
Toast.LENGTH_SHORT).show()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setFormula(first + sign + second)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue