I have used both ArrayList<>
and JsonArray
as the data sets in the adapter. One of the major difference I found was that the data set changes for the local data in Adapter was not reflected back in the calling class for JsonArray.
I wanted to know using which one is better and is my observation correct.
Also if my data set involves extracting data from a webservice(that gives me Json form data) will my changing it to ArrayList<> be better.