7

Android parse urls from JSONArray in Textview and make them clickable

view full story
linux-howto

http://stackoverflow.com – I'm currently parsing JSON in my android app (note that I am quite new to this stuff; both android and JSON). Now I got a JSONObject and inside this object a JSONArray with links (strings) inside them. I'd like to put these links inside the array inside a Textview and make them also clickable. Using Log.w i could retrieve the following output: <a href="http://xxxx.xx/xxxx/test.xlsx">test.xlsx</a> The URL seems valid, but everything I try to make them actually be links seem to fail. This is the code that I use to retrieve the links: ArrayList<String> map; //note it's alr (HowTos)