文章列表
/** * A helper class to help make handling asynchronous {@link ContentResolver} * queries easier. */
从源码中的注释可知,AsyncQueryHandler类是contentprovider异步查询的帮助类,利用它可以很方便地实现异步访问contentprovider,它的使用很简单,看api便可以上手,下面是两个不容易弄明白的地方:
1. AsyncQueryHandler类并不是只能做异步查询,除了startQuery方法,它还是startInsert,startUpdate, ...