Pregunta

can someone please help me, I am trying to do a simple quadratic equation app, and I can't figure out how to make the double variables get the value from the text inputed in the Edit text field

¿Fue útil?

Solución

Simply take the string value from the EditText and parse it to a Double.

double value = Double.parseDouble(myEditText.getText().toString());
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top