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.battlelancer.seriesguide.ui.ListsFragment.java

/**
 * Displays one user created list which includes a mixture of shows, seasons and episodes.
 */
public class ListsFragment extends Fragment
        implements LoaderManager.LoaderCallbacks<Cursor>, OnItemClickListener, View.OnClickListener {

From source file com.adkdevelopment.earthquakesurvival.ui.NewsFragment.java

/**
 * A placeholder fragment containing a simple view.
 */
public class NewsFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> {
    /**
     * The fragment argument representing the section number for this

From source file com.odoo.addons.customers.Customers.java

public class Customers extends BaseFragment
        implements ISyncStatusObserverListener, LoaderManager.LoaderCallbacks<Cursor>,
        SwipeRefreshLayout.OnRefreshListener, OCursorListAdapter.OnViewBindListener, IOnSearchViewChangeListener,
        View.OnClickListener, AdapterView.OnItemClickListener {

    public static final String KEY = Customers.class.getSimpleName();

From source file ca.rmen.android.poetassistant.main.dictionaries.ResultListFragment.java

public class ResultListFragment<T> extends Fragment
        implements LoaderManager.LoaderCallbacks<ResultListData<T>>, OnFilterListener {
    private static final String TAG = Constants.TAG + ResultListFragment.class.getSimpleName();
    private static final String EXTRA_FILTER = "filter";
    public static final String EXTRA_TAB = "tab";
    static final String EXTRA_QUERY = "query";

From source file com.nextgis.maplibui.fragment.NGWLoginFragment.java

public class NGWLoginFragment extends Fragment
        implements LoaderManager.LoaderCallbacks<String>, View.OnClickListener {
    private static final String PASSWORD_HINT = "";
    protected static final String ENDING = ".nextgis.com";
    protected static final String DEFAULT_ACCOUNT = "administrator";

From source file com.rks.musicx.ui.fragments.ArtistListFragment.java

public class ArtistListFragment extends BaseRefreshFragment
        implements LoaderManager.LoaderCallbacks<List<Artist>>, SearchView.OnQueryTextListener {

    private FastScrollRecyclerView rv;
    private ArtistListAdapter artistListAdapter;
    private int artistLoader = -1;

From source file com.jimandreas.popularmovies.MovieDetailFragment.java

/**
 *  For more information on the architecture used here - the
 *  Advanced Android video sequence hosted by Udacity:
 *
 *  http://www.youtube.com/watch?v=u1webEsoU6w&index=65&list=PLAwxTw4SYaPmETCT07vnDSiIaUBuyut0X
 *  (youtube)

From source file com.dwdesign.gallery3d.app.ImageViewerGLActivity.java

public final class ImageViewerGLActivity extends FragmentActivity implements Constants, View.OnClickListener,
        PhotoView.Listener, ImageLoader.DownloadListener, LoaderManager.LoaderCallbacks<ImageLoader.Result> {

    private final GLView mRootPane = new GLView() {
        @Override
        protected void onLayout(final boolean changed, final int left, final int top, final int right,

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

public class ReportsFramgent extends BaseReportFragment
        implements LoaderManager.LoaderCallbacks<DataInfo>, CarChangedListener {
    private TextView totalCost;
    private TextView totalRun;
    private TextView totalFuelValume;
    private TextView cost1;

From source file com.example.android.movies.MainActivity.java

public class MainActivity extends AppCompatActivity
        implements MovieAdapterOnClickHandler, LoaderManager.LoaderCallbacks<List<Movie>> {

    private RecyclerView mMoviesRecyclerView;
    private MovieAdapter mMovieAdapter;