日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

swapCursor vs changeCursor, what’s the difference?

發布時間:2025/4/16 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 swapCursor vs changeCursor, what’s the difference? 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

原文鏈接:http://www.blogc.at/2014/03/03/swapcursor-vs-changecursor-whats-the-difference/

Implementing a ListView is probably one of the first things you do when learning Android development. At In the Pocket, we use them a lot. To make everything work as smooth as possible, all Android developer at In the Pocket agreed to use CursorAdapters as much as possible. You probably wonder why we do this?

Well, in 90% of the cases, the following flow is applicable for us:

  • start a CursorLoader (pointing to one of our ContentProviders) and bind it to a list adapter
  • http request to a web service
  • parse http request response data
  • bulk insert data into ContentProvider
  • ContentProvider notifies all observers (in this case, the list adapter)
  • CursorLoader automagically reloads the Cursor and updates the ListView

There is no need to parse Cursor data to corresponding Java objects. Using this kind of flow, allows you to save a lot of precious CPU time that you else would lose while parsing these objects.

If you want to see a detailed example of this kind of implementation, take a look at the following training on the Android developers website: http://developer.android.com/guide/topics/ui/layout/listview.html

Now, the important part of this article is about 2 similar methods in the CursorAdapter class: swapCursor and changeCursor. Judging by their name, it looks like the 2 methods are doing the same, but it’s important that you know how they differ from each other.

When you are using a CursorLoader, the Cursor is managed for you. The only thing you have to do is implement the following three methods:

// Called when a new Loader needs to be created public Loader<Cursor> onCreateLoader(int id, Bundle args) {// Now create and return a CursorLoader that will take care of// creating a Cursor for the data being displayed.return new CursorLoader(this, ContactsContract.Data.CONTENT_URI,PROJECTION, SELECTION, null, null); }// Called when a previously created loader has finished loading public void onLoadFinished(Loader<Cursor> loader, Cursor data) {// Swap the new cursor in. (The framework will take care of closing the// old cursor once we return.)mAdapter.swapCursor(data); }// Called when a previously created loader is reset, making the data unavailable public void onLoaderReset(Loader<Cursor> loader) {// This is called when the last Cursor provided to onLoadFinished()// above is about to be closed. We need to make sure we are no// longer using it.mAdapter.swapCursor(null); }

You don’t have to open and close the Cursor yourself, the loader will do this for you. This is the most important reason why you have to use swapCursor, it doesn’t close the Cursor when you swap it with another Cursor.

public Cursor swapCursor(Cursor newCursor) {if (newCursor == mCursor) {return null;}Cursor oldCursor = mCursor;if (oldCursor != null) {if (mChangeObserver != null) oldCursor.unregisterContentObserver(mChangeObserver);if (mDataSetObserver != null) oldCursor.unregisterDataSetObserver(mDataSetObserver);}mCursor = newCursor;if (newCursor != null) {if (mChangeObserver != null) newCursor.registerContentObserver(mChangeObserver);if (mDataSetObserver != null) newCursor.registerDataSetObserver(mDataSetObserver);mRowIDColumn = newCursor.getColumnIndexOrThrow("_id");mDataValid = true;// notify the observers about the new cursornotifyDataSetChanged();} else {mRowIDColumn = -1;mDataValid = false;// notify the observers about the lack of a data setnotifyDataSetInvalidated();}return oldCursor;}

ChangeCursor on the other hand, first swaps the current Cursor with the new one and then closes it for you. If you use this method with your CursorLoader, your app will crash.

public void changeCursor(Cursor cursor) {Cursor old = swapCursor(cursor);if (old != null) {old.close();}}

總結

以上是生活随笔為你收集整理的swapCursor vs changeCursor, what’s the difference?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。