How would I go about adding clickable links inside a ListView?
|
|
|
This is done using the autoLink attribute of a TextView. Took me some time to dig through the documentation so putting it here with an example in case someone else is looking for it: Let us assume that you are binding your listview to a custom adapter. In that case, the following piece of code goes into your getView call: Code:
Just put the link inside the text being passed to the setText call and you're done. XML:
Hope that helps... |
|||||||
|
|
If you have text that is already in HTML format, the best thing to do is the following:
This will cause any link tags to be clickable in your text view. Alternately, you could use See this bug report for more details: http://code.google.com/p/android/issues/detail?id=2219 |
|||||
|
I found a simple workaround under Issue 3414, Comment 27:
It worked perfectly for me, although some casting was required:
|
|||
|
|
|
You need to set a function setOnItemClickListener() and inside it declare something like this:
|
|||
|
|
protected by rightfold May 19 at 12:52
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
