Example usage for android.app LoaderManager.LoaderCallbacks interface-usage

List of usage examples for android.app LoaderManager.LoaderCallbacks interface-usage

Introduction

In this page you can find the example usage for android.app LoaderManager.LoaderCallbacks interface-usage.

Usage

From source file org.totschnig.myexpenses.dialog.SelectMainCategoryDialogFragment.java

public class SelectMainCategoryDialogFragment extends CommitSafeDialogFragment
        implements OnClickListener, LoaderManager.LoaderCallbacks<Cursor> {
    public static final String KEY_RESULT = "result";
    public static final String KEY_WITH_ROOT = "with_root";
    public static final String KEY_EXCLUDED_ID = "excluded_id";
    protected SimpleCursorAdapter mAdapter;

From source file com.example.amit.tellymoviebuzzz.WatchlistMovieForecast.java

/**
 * Encapsulates fetching the forecast and displaying it as a {@link ListView} layout.
 */
public class WatchlistMovieForecast extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final int FORECAST_LOADER = 0;

From source file com.deliciousdroid.fragment.BrowseBundlesFragment.java

public class BrowseBundlesFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor> {

    private String sortfield = Bundle.Name + " ASC";
    private SimpleCursorAdapter mAdapter;

    private String username = null;

From source file com.deliciousdroid.fragment.BrowseTagsFragment.java

public class BrowseTagsFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor> {

    private String sortfield = Tag.Name + " ASC";
    private SimpleCursorAdapter mAdapter;

    private String username = null;

From source file com.murrayc.galaxyzoo.app.SubjectViewerFragment.java

/**
 * A fragment representing a single subject.
 * This fragment is either contained in a {@link ListActivity}
 * in two-pane mode (on tablets) or a {@link SubjectViewerActivity}
 * on handsets.
 */

From source file com.btmura.android.reddit.app.AddAccountFragment.java

public class AddAccountFragment extends DialogFragment
        implements OnClickListener, LoaderManager.LoaderCallbacks<Bundle> {

    private static final String ARG_FIXED_ACCOUNT_NAME = "fan";
    private static final String ARG_CODE = "c";

From source file com.bangz.smartmute.RulelistFragment.java

/**
 * A placeholder fragment containing a simple view.
 */
public class RulelistFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks, RulelistAdapter.ActivedButtonListener {

From source file com.caju.uheer.app.services.infrastructure.ContactablesLoaderCallbacks.java

/**
 * Helper class to handle all the callbacks that occur when interacting with loaders.  Most of the
 * interesting code in this sample app will be in this file.
 */
public class ContactablesLoaderCallbacks implements LoaderManager.LoaderCallbacks<Cursor> {

From source file com.example.amit.tellymoviebuzzz.PopularFragment.java

/**
 * Encapsulates fetching the forecast and displaying it as a {@link ListView} layout.
 */
public class PopularFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final int FORECAST_LOADER = 0;

From source file com.example.amit.tellymoviebuzzz.ThisYearFragment.java

/**
 * Encapsulates fetching the forecast and displaying it as a {@link ListView} layout.
 */
public class ThisYearFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final int FORECAST_LOADER = 0;