Android 3.0 - 使用LoaderManager实例的优势是什么?

Zso*_*agy 31 android android-asynctask android-loadermanager android-cursorloader

3.0我们得到了花哨的LoaderManager,使用它处理数据加载AsyncTaskLoader中,CursorLoader和其他自定义Loader实例.但是通过这些文档来阅读这些我无法理解这一点:这些比仅仅使用旧AsyncTask的数据加载更好吗?

hac*_*bod 53

那么它们实现起来要简单得多,并且关注生命周期管理的一切,因此更不容易出错.

只需查看示例代码,即可显示游标查询的结果,该查询允许用户通过操作栏中的查询输入字段以交互方式过滤结果集:

public static class CursorLoaderListFragment extends ListFragment
        implements OnQueryTextListener, LoaderManager.LoaderCallbacks<Cursor> {

    // This is the Adapter being used to display the list's data.
    SimpleCursorAdapter mAdapter;

    // If non-null, this is the current filter the user has provided.
    String mCurFilter;

    @Override public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

        // Give some text to display if there is no data.  In a real
        // application this would come from a resource.
        setEmptyText("No phone numbers");

        // We have a menu item to show in action bar.
        setHasOptionsMenu(true);

        // Create an empty adapter we will use to display the loaded data.
        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);
        setListAdapter(mAdapter);

        // Prepare the loader.  Either re-connect with an existing one,
        // or start a new one.
        getLoaderManager().initLoader(0, null, this);
    }

    @Override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
        // Place an action bar item for searching.
        MenuItem item = menu.add("Search");
        item.setIcon(android.R.drawable.ic_menu_search);
        item.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
        SearchView sv = new SearchView(getActivity());
        sv.setOnQueryTextListener(this);
        item.setActionView(sv);
    }

    public boolean onQueryTextChange(String newText) {
        // Called when the action bar search text has changed.  Update
        // the search filter, and restart the loader to do a new query
        // with this filter.
        mCurFilter = !TextUtils.isEmpty(newText) ? newText : null;
        getLoaderManager().restartLoader(0, null, this);
        return true;
    }

    @Override public boolean onQueryTextSubmit(String query) {
        // Don't care about this.
        return true;
    }

    @Override public void onListItemClick(ListView l, View v, int position, long id) {
        // Insert desired behavior here.
        Log.i("FragmentComplexList", "Item clicked: " + id);
    }

    // These are the Contacts rows that we will retrieve.
    static final String[] CONTACTS_SUMMARY_PROJECTION = new String[] {
        Contacts._ID,
        Contacts.DISPLAY_NAME,
        Contacts.CONTACT_STATUS,
        Contacts.CONTACT_PRESENCE,
        Contacts.PHOTO_ID,
        Contacts.LOOKUP_KEY,
    };

    public Loader<Cursor> onCreateLoader(int id, Bundle args) {
        // This is called when a new Loader needs to be created.  This
        // sample only has one Loader, so we don't care about the ID.
        // First, pick the base URI to use depending on whether we are
        // currently filtering.
        Uri baseUri;
        if (mCurFilter != null) {
            baseUri = Uri.withAppendedPath(Contacts.CONTENT_FILTER_URI,
                    Uri.encode(mCurFilter));
        } else {
            baseUri = Contacts.CONTENT_URI;
        }

        // Now create and return a CursorLoader that will take care of
        // creating a Cursor for the data being displayed.
        String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND ("
                + Contacts.HAS_PHONE_NUMBER + "=1) AND ("
                + Contacts.DISPLAY_NAME + " != '' ))";
        return new CursorLoader(getActivity(), baseUri,
                CONTACTS_SUMMARY_PROJECTION, select, null,
                Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
    }

    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);
    }

    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);
    }
}
Run Code Online (Sandbox Code Playgroud)

使用AsyncTask正确地实现这个完整的示例将涉及更多的代码......即使这样,您是否要实现完整且良好的工作?例如,您的实现是否会跨活动配置更改保留加载的Cursor,因此在创建新实例时不需要重新查询?LoaderManager/Loader将自动为您执行此操作,并根据活动生命周期负责正确创建和关闭Cursor.

另请注意,使用此代码并不需要您完全考虑确保从主UI线程执行长时间运行的工作.LoaderManager和CursorLoader为您完成所有这些工作,确保您在与光标交互时永远不会阻塞主线程.要正确执行此操作,您实际上需要在点处同时激活两个Cursor对象,这样您可以继续显示当前Cursor的交互式UI,同时加载要显示的下一个.LoaderManager为您完成所有这些工作.

这只是一个更简单的API - 无需了解AsyncTask并考虑需要在后台运行什么,无需考虑活动生命周期或如何在Activity中使用旧的"托管游标"API(没有'无论如何都要工作和LoaderManager).

(顺便说一下,不要忘记新的"支持"静态库,它允许您在旧版Android上使用完整的LoaderManager API,最低可达1.6!)

  • 也许是我,但这似乎远非易事! (10认同)
  • 我知道这是一个老问题,但即使`Loader`看起来更容易实现并处理配置更改,如果你需要更新UI它似乎不是最好的,因为它没有相当于` AsyncTask的``onProgressUpdate`.很难知道因为它的文档很少,最佳实践是什么.在我看来,"Loaders"和"AsyncTasks"是相似的,但每个都有自己的权衡. (6认同)