Ok so I'm trying to add 100+ buttons to a listview via CustomAdapter and each button should open a different url. Say my starting url is www.example.com/hi/01.htm and my last url is www.example.com/hi/136.htm . My CustomAdapter moves down the list with the int position. So im thinking it should be something like this:
URL url = new URL("www.example.com/hi/", position);
But it doesn't work, plus the htm tag at the end wouldn't appear. Ive searched on google and found lots of things like URi and retrofit but I can't seem to understand how they might work with my specific needs. Any help/tips/advice would be highly apreciated!