How can I know that some text contain \"http://www.\" I want to show domain in Web View. Domain name is written in TextView but there is no restriction to add prefix. If user di
Try this
String a = "http://"; webview.loadUrl(a + url.getText().toString());