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

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

Introduction

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

Usage

From source file com.creationgroundmedia.taskmaster.TaskListActivity.java

/**
 * Created by George Cohn III on 9/24/16.
 *
 * An activity representing a list of tasks. This activity
 * has different presentations for handset and tablet-size devices. On
 * handsets, the activity presents a list of items, which when touched,

From source file com.dustinmreed.openwifi.MapActivityFragment.java

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

    // These indices are tied to DETAIL_COLUMNS.  If DETAIL_COLUMNS changes, these
    // must change.
    static final int COL_WIFILOCATION_NAME = 1;
    static final int COL_WIFILOCATION_TYPE = 2;

From source file com.nononsenseapps.feeder.ui.ReaderFragment.java

/**
 * A simple {@link Fragment} subclass.
 * Use the {@link ReaderFragment#newInstance} factory method to
 * create an instance of this fragment.
 */
public class ReaderFragment extends Fragment implements LoaderManager.LoaderCallbacks<Spanned> {

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

public class AddUpdateFuelLogActivity extends BaseLogAcivity implements LoaderManager.LoaderCallbacks<Cursor> {
    public static final int LOADER_TYPE = 102;
    public static final int LOADER_STATION = 103;

    private SimpleCursorAdapter fuelAdapter;
    private SimpleCursorAdapter stationAdapter;

From source file com.example.locationprovider.app.MainActivity.java

/**
 * Interface to the SendMockLocationService that sends mock locations into Location Services.
 * <p/>
 * This Activity collects parameters from the UI, sends them to the Service, and receives back
 * status messages from the Service.
 * <p/>

From source file com.readystatesoftware.chuck.internal.ui.TransactionActivity.java

public class TransactionActivity extends BaseChuckActivity implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final String ARG_TRANSACTION_ID = "transaction_id";

    private static int selectedTabPosition = 0;

From source file barqsoft.footballscores.Fragments.DetailFragment.java

/**
 * Created by paskalstoyanov on 22/01/16.
 */
public class DetailFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final String LOG_TAG = DetailFragment.class.getSimpleName();

From source file com.kobi.metalsexchange.app.ExchangeRatesFragment.java

/**T
 * Encapsulates fetching the rates and displaying it as a {@link RecyclerView} layout.
 */
public class ExchangeRatesFragment extends Fragment
        implements LoaderManager.LoaderCallbacks<Cursor>, SharedPreferences.OnSharedPreferenceChangeListener {
    private ExchangeRatesAdapter mExchangeRatesAdapter;

From source file com.crossconnect.activity.audio.AudioPlayerDownloadedFragment.java

public class AudioPlayerDownloadedFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<List<OnlineAudioResource>> {

    private static final String TAG = "AudioPlayerDownloadFragment";

    private static ResourceService resourceService;

From source file com.rowland.hashtrace.ui.fragments.DetailFragment.java

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

    public static final String ID_KEY = "_id";
    private static final int DETAIL_LOADER = 3;
    private static final String HASHTAG_KEY = "hashtag";
    // Specify the columns we need for projection.