I want to take input, a URL or just a website name like, www.google.com from EditText in Android and on userclick on the button to submit or when the EditText looses the focus the URL should be validated, like it is in the format "www.anyURL.com"...

How can i do this? is there any inbuilt functionality available in android?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 4 down vote accepted

As of Android API level 8 there is a WEB_URL pattern. Quoting the source, it "match[es] most part of RFC 3987". If you target a lower API level you could simply copy the pattern from the source and include it in your application. I assume you know how to use patterns and matchers, so I'm not going into more details here.

Also the class URLUtil provides some useful methods, e.g:

  • isHttpUrl()[http://developer.android.com/reference/android/webkit/URLUtil.html#isHttpUrl%28java.lang.String%29],

  • isValidUrl()[http://developer.android.com/reference/android/webkit/URLUtil.html#isValidUrl%28java.lang.String%29]

The descriptions of the methods are not very elaborate, therefore you are probably best of looking at the source and figuring out which one fits your purpose best.

As for when to trigger the validation check, there are multiple possibilities: you could use the EditText callback functions

  • onFocusChanged()[http://developer.android.com/reference/android/widget/TextView.html#onFocusChanged%28boolean,%20int,%20android.graphics.Rect%29], or

  • onTextChanged()[http://developer.android.com/reference/android/widget/TextView.html#onTextChanged%28java.lang.CharSequence,%20int,%20int,%20int%29]

or use a TextWatcher [http://developer.android.com/reference/android/text/TextWatcher.html], which I think would be better.

I hope this helps, best regards,

Dimi

//EDIT: Since I'm a new user, I'm not allowed to post more than 2 links. Sorry for the inconvenience.

link|improve this answer
thanks...i'll try this... – Preetam Jun 30 '11 at 16:04
feedback

URLUtil.isValidUrl will work since it exists since api level 1.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.