I am creating a mortgage calculator android program and I was trying to figure out how to get the EditText value (comes back as an Editable) to convert to an integer so I ca
Integer i = Integer.valueOf(String s);
You should also configure the EditText to only accept integer values.