I parsed a URL and turned the data into a ListView of 10 items. Each of these 10 items have their own URLS to parse with more information.
Is there a way to parse all of them at once and only show the one the user clicks on?
Right now I plan on creating new activities for every item then just using an intent to get to the right information. That's a bit annoying though, having 10 classes to update all the time.
I will provide code if need be. I already know how to parse data, but not parsing 10 different links and only showing them when the user clicks on the correct ListView item.
I already have the ListView and I have the onItemClickListener, so maybe something in there could change the URL and start the parse again?