1

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

MrDumb
  • 2,140
  • 1
  • 21
  • 31

1 Answers1

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
  • Anyways have you got any demo which can explain curd operations. – MrDumb Jul 12 '14 at 10:56