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 com.example.amit.tellymoviebuzzz.UpcomingMoviesForecast.java

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

    private static final int FORECAST_LOADER = 0;

From source file at.bitfire.davdroid.ui.CreateCollectionFragment.java

public class CreateCollectionFragment extends DialogFragment implements LoaderManager.LoaderCallbacks<Exception> {
    private static final String ARG_ACCOUNT = "account", ARG_COLLECTION_INFO = "collectionInfo";

    protected Account account;
    protected CollectionInfo info;

From source file com.google.samples.apps.iosched.ui.HashtagsFragment.java

public class HashtagsFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final String TAG = makeLogTag(HashtagsFragment.class);

    private CollectionView mCollectionView;

From source file com.enadein.carlogbook.ui.TypeReportFragment.java

public class TypeReportFragment extends BaseReportFragment
        implements LoaderManager.LoaderCallbacks<DataInfo>, CarChangedListener {
    public static final String DATE_PICKER = "date_picker";
    private long from = 0;
    private long to = 0;

From source file com.example.android.sampletvinput.VerticalGridFragment.java

public class VerticalGridFragment extends android.support.v17.leanback.app.VerticalGridFragment
        implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final int NUM_COLUMNS = 5;
    private final CursorObjectAdapter mVideoCursorAdapter = new CursorObjectAdapter(new CardPresenter());
    private static final int ALL_VIDEOS_LOADER = 1;

From source file com.granita.tasks.SettingsListFragment.java

/**
 * This fragment is used to display a list of task-providers. It show the task-providers which are visible in main {@link TaskListFragment} and also the
 * task-providers which are synced. The selection between the two lists is made by passing arguments to the fragment in a {@link Bundle} when it created in the
 * {@link SyncSettingsActivity}.
 * 
 * @author Arjun Naik<arjun@arjunnaik.in>

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

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

    private static final int FORECAST_LOADER = 0;

From source file com.aengbee.android.leanback.ui.VerticalGridFragment.java

public class VerticalGridFragment extends android.support.v17.leanback.app.VerticalGridFragment
        implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final int NUM_COLUMNS = 5;
    private final CursorObjectAdapter mVideoCursorAdapter = new CursorObjectAdapter(new CardPresenter());
    private static final int ALL_VIDEOS_LOADER = 1;

From source file com.fbartnitzek.tasteemall.location.ShowReviewMapFragment.java

/**
 * Copyright 2016.  Frank Bartnitzek
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file com.joulespersecond.seattlebusbot.ReportProblemFragmentBase.java

public abstract class ReportProblemFragmentBase extends SherlockFragment
        implements LoaderManager.LoaderCallbacks<ObaResponse> {
    //private static final String TAG = "ReportProblemFragmentBase";

    private static final int REPORT_LOADER = 100;