I am a beginner to Android programming.
I am trying to convert an string(from an EditText widget) to a double
Whenever i run the program, it crashes whenever the parseDouble function is used:
Double.parseDouble( input.getText().toString() );
Does anybody have an idea why parseDouble causes my program to crash and a possible fix? or a different way to convert my input to a double?