URL as a link in listview in android -


i new android , trying contribute android project. there listview of messages , when user clicks , specific message, view opens , shows details shown in below image(android view).

android view

all these information being fetched web , parsed. , link not clickable on web view shown in below figure (webview),

web view

it not shown hyperlink on webview. think reason not showing link in android app too.

can me this? code related can found @ : source related files are:

\scraper\messagesscraper.java ,  \scraper\singlemessagescraper.java ,  \ui\messages.java  \ui\singlemessage.java 

any great. in advance.

in xml wherever define particular textview add following textview

 android:linksclickable="true" 

also see how make links in textview clickable? if want example hide url , show text link.

edit: can tell...

messagescraper using threelineadapter - https://github.com/pradeepb6/tucanmobile/blob/master/src/com/dalthed/tucan/adapters/threelinesadapter.java can see textviews here , go res folder , change them accordingly.

singlemessagescraper seems using standard arrayadapter , androids simple_list_item_1 layout. http://developer.android.com/reference/android/r.layout.html#simple_list_item_1 if need you'll need make own list_item layout if doesn't make sense use 1 created.

i don't think ui classes need changing.

re: comment - single message (shown in picture) listview of textviews. have listview of custom views if want more things in each cell, threelineadapter handling.