Load Content Dynamically With Jsoup - Data Doesn't Inflate
I'm trying to create an app which is parsing HTML data into RecyclerView. Using JSoup, I'm trying to make: A static fragment as a homepage, A dynamic fragment with content being ch
Solution 1:
I've found the answer already.
I've created Utils
class for storing the most important values and passing them to activities or fragments. All I had to do was to reformat Utils
to singleton pattern - when I was calling Utils
previously, no data was shown because of different instances. After making this class a singleton, data was collected and displayed properly.
Post a Comment for "Load Content Dynamically With Jsoup - Data Doesn't Inflate"