I\'d like to extract URL from hi there this is a URL String http://mytest.com.
hi there this is a URL String http://mytest.com
I tried to use EditText.getURLs but it didn\'t work for me.
change input type of your EditText ---- android:inputType="textUri"
and get your url using --- String url=edittext.getText().toString();