I have a class which is implementing FilterQueryProvider and having an inner class which is extending AsyncTask. I am using this inner class to call a REST API and getting data successfully in onPostExecute which is MatrixCursor. But I want this MatrixCursor data in runQuery() method of outer class.
I am calling REST API in onCreate method. How can I get it in runQuery method???