I am using JSOUP HTML parser to parse HTML. I have one specific site like example.com/test.html. This site consists of several divs. At first load I need to load first div. Next I need to load div specified by selected value in spinner. So my question is: Is there a way to use async task to do Jsoup.connect().get()
and then use this loaded document multiple times? I programmed it inside async task but then I realized that I cant use same async task multiple time.
Any suggestions?
Thanks in forward