Example usage for android.content CursorLoader CursorLoader

List of usage examples for android.content CursorLoader CursorLoader

Introduction

In this page you can find the example usage for android.content CursorLoader CursorLoader.

Prototype

public CursorLoader(Context context) 

Source Link

Document

Creates an empty unspecified CursorLoader.

Usage

From source file:com.android.contacts.preference.DisplayOptionsPreferenceFragment.java

private CursorLoader createCursorLoader(Context context) {
    return new CursorLoader(context) {
        @Override/*from w  w  w  .  j  av a  2s.c o  m*/
        protected Cursor onLoadInBackground() {
            try {
                return super.onLoadInBackground();
            } catch (RuntimeException e) {
                return null;
            }
        }
    };
}