I am learning AsyncQueryHandler. Is there any Example or demo available which can describe this properly. I have seen some example which were taken from some project. But that was not that clear. I was looking more of a sample project which is implementing this concept. Thanks in advance
Asked
Active
Viewed 474 times
1
-
what is unclear with that class? – pskink Jun 28 '14 at 12:24
-
Curd Operations. I need a simple demo of curd operations – MrDumb Jun 30 '14 at 07:50
1 Answers
0
There is question about this topic with example in comments: see here
Also you should realize that AsyncQueryHandler is an abstract class, so you need to create class that extends AsyncQueryHandler and override (at least) its unimplemented methods.

Community
- 1
- 1

Giorgi Margiani
- 292
- 1
- 6
- 17
-
no, its no abstract class, but yes, without extending it, ACH is helpless – pskink Jun 29 '14 at 08:16
-
It is an abstract class, Description is given here [link](http://developer.android.com/reference/android/content/AsyncQueryHandler.html) – MrDumb Jun 30 '14 at 07:44
-
hmm, i could swear it wasnt abstract when i was reading its docs, but yes you are right, it is. – pskink Jun 30 '14 at 07:58
-