CursorLoader:java
CursorLoader實現異步加載數據,爲了不同步查詢數據庫時阻塞UI線程的問題。CursorLoader是Loader的子類,Loader能夠移步加載數據;loader本身會監視數據源的變化而且會主動上報;當發生配置上的變化,從新生成的loader會自動鏈接到變化前的cursor,這樣就避免再查一次數據庫。android
一、在配置清單裏添加查詢信息的權限web
<uses-permission android:name="android.permission.READ_SMS"/>數據庫
二、res/layout下2個佈局文件activity_main.xml和item_activity.xml佈局異步
activity_main.xml佈局ide
代碼佈局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >this
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>spa
</RelativeLayout>
線程
======================
item_activity.xml佈局
代碼
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/text_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/text_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
=======================================
三、MainActivity.java類
代碼
//須要實現接口LoaderCallbacks而後重寫接口裏的方法
public class MainActivity extends FragmentActivity implements
LoaderCallbacks<Cursor> {
private ListView listView;
private SimpleCursorAdapter adapter;
private String uri_sms = "content://sms";//訪問信息數據庫的uri
private LoaderManager loaderManager;
private Cursor cursor;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.listView = (ListView) this.findViewById(R.id.listview);
// 最後一個參數 標誌 能夠用CursorAdapter.出來
//若是是FLAG_REGISTER_CONTENT_OBSERVER標誌 則適配器會在Cursor上註冊一個內容觀察者
//該觀察者會時時刻刻觀察內容的變更 若是通知到達時就調用onContentChanged()方法
adapter = new SimpleCursorAdapter(this, R.layout.item_activity, cursor,
new String[] {"body","address"},
new int[] { R.id.text_phone, R.id.text_content },
CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
listView.setAdapter(adapter);
loaderManager = getSupportLoaderManager();//獲取加載管理器
// initLoader -- 若是當前沒有加載器就調用onCreateLoader建立一個 有就根據第一個參數標誌重複利用
// 第一個參數 -- 加載器的標誌 隨便寫
// 第二個參數 -- Bundle -- 用來傳遞數據 沒有能夠寫null
// 第三個參數 -- LoaderCallbacks 對象
loaderManager.initLoader(1, null, this);
}
// ----------繼承LoaderCallbacks接口要重寫的方法---------------
@Override// 建立一個Loade
public Loader<Cursor> onCreateLoader(int id, Bundle bundle) {
return new CursorLoader(this, Uri.parse(uri_sms), null, null, null, "date desc");
}
@Override// Loader建立完成
public void onLoadFinished(Loader<Cursor> arg0, Cursor cursor) {
adapter.changeCursor(cursor);
}
@Override// 當一個加載器給重置時 調用 public void onLoaderReset(Loader<Cursor> arg0) { adapter.changeCursor(null); }}