我对 CursorLoader 和使用 Content Resolver 的常规调用有点困惑:
CursorManager 有一个示例:( http://developer.android.com/reference/android/app/LoaderManager.html ),
我们return new CursorLoader
用来获取数据。另一个使用 contentResolver 的例子,在 content Provider 中插入一些数据:
mUri = getContentResolver().insert(intent.getData(), null);
如果我们想使用Loader
实例在内容提供程序中插入数据,而不是像上面的示例那样,只查询数据,该怎么办。我们应该怎么做?有必要吗?
谢谢