I am trying to implement AsyncQueryHandler because I am experiencing the same exact problem in this link but I dont see any example or anything about implementing it.
I tried doing
AsyncQueryHandler handler = new AsyncQueryHandler(getContentResolver());
since that is what the constructor shows in the docs but I get an error saying cannot instantiate the type AsyncQueryHandler so how do I use it then?
AsyncQueryHandler is an abstract class, thus you cannot instantiate it directly. You need to subclass it.