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.jbirdvegas.mgerrit.PatchSetViewerActivity.java

/**
 * An activity representing a single Change detail screen. This
 * activity is only used on handset devices. On tablet-size devices,
 * change details are presented side-by-side with a list of changes
 * <p>
 * This activity is mostly just a 'shell' activity containing nothing

From source file com.gh4a.fragment.RepositoryListFragment.java

public class RepositoryListFragment extends BaseFragment
        implements LoaderManager.LoaderCallbacks<List<Repository>>, OnItemClickListener, OnScrollListener {

    private String mLogin;
    private String mUserType;
    private String mRepoType;

From source file com.gdgdevfest.android.apps.devfestbcn.ui.AnnouncementsFragment.java

/**
 * A fragment that shows announcements.
 */
public class AnnouncementsFragment extends ListFragment
        implements AbsListView.OnScrollListener, LoaderManager.LoaderCallbacks<Cursor> {

From source file com.example.android.myargmenuplanner.DetailFoodFragment.java

/**
 * A placeholder fragment containing a simple view.
 */
public class DetailFoodFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {

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

From source file ch.berta.fabio.popularmovies.presentation.ui.fragments.MovieGridFavFragment.java

/**
 * Displays a grid of movie poster images.
 */
public class MovieGridFavFragment extends MovieGridBaseFragment
        implements MovieGridViewModelFav.ViewInteractionListener, LoaderManager.LoaderCallbacks<Cursor> {

From source file com.hotmart.dragonfly.check.ui.ShareChecklistActivity.java

public class ShareChecklistActivity extends BaseActivity
        implements LoaderManager.LoaderCallbacks<List<NearbyVerificationResponseVO>>, OnMapReadyCallback {

    @BindView(R.id.label)
    TextView mLabel;
    @BindView(R.id.address)

From source file com.example.android.diegobaldi.sunshine.DetailActivity.java

public class DetailActivity extends AppCompatActivity implements LoaderManager.LoaderCallbacks<Cursor> {

    /*
     * In this Activity, you can share the selected day's forecast. No social sharing is complete
     * without using a hashtag. #BeTogetherNotTheSame
     */

From source file com.example.android.popularmovies.ui.MoviesFragment.java

/**
 * Created by kosrat on 5/30/16.
 * <p/>
 * Encapsulates fetching the movies and displaying it as a {@link GridView} layout.
 */
public class MoviesFragment extends Fragment

From source file com.dmitrymalkovich.android.popularmoviesapp.MovieListActivity.java

/**
 * An activity representing a grid of Movies. This activity
 * has different presentations for handset and tablet-size devices.
 */
public class MovieListActivity extends AppCompatActivity
        implements LoaderManager.LoaderCallbacks<Cursor>, FetchMoviesTask.Listener, MovieListAdapter.Callbacks {

From source file com.google.firebase.udacity.greenthumb.PlantDetailActivity.java

/**
 * {@link PlantDetailActivity} displays a plant's name and description
 * and allows the user to check out the plant to the shopping cart.
 */
public class PlantDetailActivity extends AppCompatActivity implements View.OnClickListener,
        LoaderManager.LoaderCallbacks<Cursor>, GoogleApiClient.OnConnectionFailedListener {