程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-CursorLoader使用LoaderManager向CursorAdapter傳遞一個光標

android-CursorLoader使用LoaderManager向CursorAdapter傳遞一個光標

編輯:編程綜合問答
CursorLoader使用LoaderManager向CursorAdapter傳遞一個光標

我在檢查代碼時發現我並不知道一個CursorLoader和LoaderManage組合起來如何與CursorAdapter連接。這就是我疑惑的部分:

agendaAdapter = new MyAgendaAdapter(this, null);

makeProviderBundle(new String[] {"_id", "event_name", "start_date", "start_time",
    "end_date", "end_time", "location"}, "date(?) >= start_date and date(?) <= end_date", 
new String[]{getChosenDate(), getChosenDate()}, null);

getLoaderManager().initLoader(0, myBundle, MainDisplayActivity.this);
list.setAdapter(agendaAdapter);

我找不到連接,如何傳遞自定義的ContentProvider中的query()方法到指定的CursorAdapter?

最佳回答:


1.首先,創建CursorAdapter

mAdapter = new SimpleCursorAdapter(
        getActivity(),
        android.R.layout.simple_list_item_2, 
        null,
        new String[] { Contacts.DISPLAY_NAME, Contacts.CONTACT_STATUS },
        new int[] { android.R.id.text1, android.R.id.text2 }, 
        0);

2.然後,初始化loader。

getLoaderManager().initLoader(0, null, this);

3.LoaderManager調用onCreateLoader(int id, Bundle args).
4.查詢光標傳遞到adapter。
5.查詢數據與CursorAdapter連接起來。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved