I have a problem in getting a string and parsing it using Uri.parse() method.
I tried the following code:
EditText edit = (EditText) findViewById(R.id.enter);
String telephone = edit.getText().toString();
Uri number = Uri.parse(telephone);
but the application force closed.