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.deliciousdroid.fragment.BrowseBookmarksFragment.java

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

    private SimpleCursorAdapter mAdapter;
    private FragmentBaseActivity base;

    private String sortfield = Bookmark.Time + " DESC";

From source file com.example.kacyn.watchfacetest.ForecastFragment.java

/**
 * Encapsulates fetching the forecast and displaying it as a {@link ListView} layout.
 */
public class ForecastFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor>,
        GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener {
    private ForecastAdapter mForecastAdapter;

From source file com.example.barni.sunshine.ForecastFragment.java

/**
 * Encapsulates fetching the forecast and displaying it as a {@link android.support.v7.widget.RecyclerView} layout.
 */
public class ForecastFragment extends Fragment
        implements LoaderManager.LoaderCallbacks<Cursor>, SharedPreferences.OnSharedPreferenceChangeListener {
    public static final String LOG_TAG = ForecastFragment.class.getSimpleName();

From source file com.nononsenseapps.filepicker.ui.core.AbstractFilePickerFragment.java

/**
 * A fragment representing a list of Files.
 * <p/>
 * <p/>
 * Activities containing this fragment MUST implement the {@link
 * OnFilePickedListener}

From source file com.mobileglobe.android.customdialer.filterednumber.BlockedNumbersFragment.java

public class BlockedNumbersFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<Cursor>, View.OnClickListener {
    private static final char ADD_BLOCKED_NUMBER_ICON_LETTER = '+';

    private BlockedNumbersMigrator blockedNumbersMigratorForTest;
    protected View migratePromoView;

From source file com.mobileglobe.android.simpledialer.filterednumber.BlockedNumbersFragment.java

public class BlockedNumbersFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<Cursor>, View.OnClickListener {
    private static final char ADD_BLOCKED_NUMBER_ICON_LETTER = '+';

    private BlockedNumbersMigrator blockedNumbersMigratorForTest;
    protected View migratePromoView;

From source file com.sagar.sunshine.ForecastFragment.java

/**
 * Encapsulates fetching the forecast and displaying it as a {@link android.support.v7.widget.RecyclerView} layout.
 */
public class ForecastFragment extends Fragment
        implements LoaderManager.LoaderCallbacks<Cursor>, SharedPreferences.OnSharedPreferenceChangeListener {
    public static final String LOG_TAG = ForecastFragment.class.getSimpleName();

From source file com.securecomcode.text.ContactSelectionListFragment.java

/**
 * Activity for selecting a list of contacts.  Displayed inside
 * a ContactSelectionActivity tab frame, and ultimately called by
 * ComposeMessageActivity for selecting a list of destination contacts.
 *
 * @author Moxie Marlinspike

From source file com.amsterdam.marktbureau.makkelijkemarkt.LoginFragment.java

/**
 *
 * @author marcolangebeeke
 */
public class LoginFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor>, Callback<JsonObject> {

From source file com.example.vivek.team.EditorActivity.java

/**
 * Allows user to create a new user or edit an existing one.
 */
public class EditorActivity extends AppCompatActivity implements LoaderManager.LoaderCallbacks<Cursor> {
    private UserHelper mDbHelper;
    private static final int EXISTING_USER_LOADER = 0;