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.jpventura.alexandria.AddBook.java

public class AddBook extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {
    private static final String TAG = "INTENT_TO_SCAN_ACTIVITY";
    private EditText ean;
    private final int LOADER_ID = 1;
    private View rootView;
    private final String EAN_CONTENT = "eanContent";

From source file com.murrayc.galaxyzoo.app.SubjectExtrasFragment.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 ClassifyActivity}
 * on handsets.
 */

From source file com.granita.tasks.homescreen.TaskListSelectionFragment.java

/**
 * Provides the selection of task list.
 * 
 * @author Tobias Reinsch <tobias@dmfs.org>
 * 
 */

From source file com.commonsware.android.jank.framemetrics.MainActivity.java

public class MainActivity extends RecyclerViewActivity
        implements LoaderManager.LoaderCallbacks<Cursor>, Window.OnFrameMetricsAvailableListener {
    private static final String STATE_IN_PERMISSION = "inPermission";
    private static final int REQUEST_PERMS = 137;
    private boolean isInPermission = false;
    private MenuItem record, stop;

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

/**
 * Copyright 2017.  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.renard.ocr.documents.viewing.single.TableOfContentsActivity.java

public class TableOfContentsActivity extends MonitoredActivity
        implements LoaderManager.LoaderCallbacks<Cursor>, OnItemClickListener {
    private final static String[] PROJECTION = { Columns.ID, Columns.TITLE, Columns.OCR_TEXT, Columns.CREATED };

    public final static String EXTRA_DOCUMENT_ID = "document_id";
    public final static String EXTRA_DOCUMENT_POS = "document_pos";

From source file com.google.android.demos.jamendo.app.SearchActivity.java

public class SearchActivity extends FragmentActivity
        implements AdapterView.OnItemClickListener, LoaderManager.LoaderCallbacks<Cursor>, View.OnClickListener {

    private static final int LOADER_SEARCH = 1;

    private SearchAdapter mAdapter;

From source file com.granita.contacticloudsync.ui.DebugInfoActivity.java

public class DebugInfoActivity extends Activity implements LoaderManager.LoaderCallbacks<String> {
    public static final String KEY_EXCEPTION = "exception", KEY_LOGS = "logs", KEY_ACCOUNT = "account",
            KEY_AUTHORITY = "authority", KEY_PHASE = "phase";

    TextView tvReport;
    String report;

From source file ca.etsmtl.applets.etsmobile.fragments.NewsListFragment.java

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

    // private final static String TAG =
    // "ca.etsmtl.applets.etsmobile.fragments.NewsListFragment";
    private NewsListSelectedItemListener selectedItemListener;
    private NewsCursorAdapter adapter;

From source file com.ctg.ctvideo.fragments.FileListFragment.java

public class FileListFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {
    private static final String ARG_PATH = "path";

    private TextView mPathView;
    private ListView mFileListView;
    private VideoAdapter mAdapter;