EditText ed1 = (EditText)findViewById( R.id.editText1 );
int a = Integer.parseInt( ed1.getText().toString() );
Does the above code get the input as numeric from the user and show it as a string?
My requirement is to get the input as integer and return as Strings. How do I do that?
Will make it available as an integer (
int a) and as a string (String ed1Str)