Example usage for android.support.v4.app ListFragment subclass-usage

List of usage examples for android.support.v4.app ListFragment subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.app ListFragment subclass-usage.

Usage

From source file com.example.naveen.dentalorder.ui.ReviewFragment.java

public class ReviewFragment extends ListFragment implements ModelCallbacks {
    private Callbacks mCallbacks;
    private AbstractWizardModel mWizardModel;
    private List<ReviewItem> mCurrentReviewItems;

    private ReviewAdapter mReviewAdapter;

From source file at.wada811.android.dialogfragments.sample.progressdialogfragment.examples.LoaderSpinnerProgressDialogFragmentExamplesFragment.java

public class LoaderSpinnerProgressDialogFragmentExamplesFragment extends ListFragment
        implements DialogFragmentCallbackProvider, LoaderCallbacks<Object> {

    private static final int LOADER_ID = 811;

    public static LoaderSpinnerProgressDialogFragmentExamplesFragment newInstance() {

From source file com.example.spoon.ordering.wizard.ui.ReviewFragment.java

public class ReviewFragment extends ListFragment implements ModelCallbacks {
    private Callbacks mCallbacks;
    private AbstractWizardModel mWizardModel;
    private List<ReviewItem> mCurrentReviewItems;

    private ReviewAdapter mReviewAdapter;

From source file com.commonsware.android.arXiv.FavouritesListFragment.java

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

    private SimpleCursorAdapter adapter;

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {

From source file com.android.transmart.UI.fragments.PlaceListFragment.java

/**
 * UI Fragment to show a list of venues near to the users current location.
 */
public class PlaceListFragment extends ListFragment implements LoaderCallbacks<Cursor> {

    protected Cursor cursor = null;

From source file com.example.spellingcoach.tabs.students.StudentsListFragment.java

/**
 * Simple Fragment used to display some meaningful content for each page in the sample's
 * {@link android.support.v4.view.ViewPager}.
 */
public class StudentsListFragment extends ListFragment
        implements View.OnClickListener, LoaderManager.LoaderCallbacks<Cursor> {

From source file com.brookmanholmes.bma.wizard.ui.BaseChoiceFragment.java

/**
 * Created by Brookman Holmes on 8/22/2016.
 */
public abstract class BaseChoiceFragment extends ListFragment {
    protected static final String ARG_KEY = "key";
    protected static final String ARG_SORT_PAGE = "sort_page";

From source file com.commonsware.android.weather2.WeatherFragment.java

public class WeatherFragment extends ListFragment {
    @SuppressLint("SimpleDateFormat")
    private static final SimpleDateFormat ISO8601 = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
    private ForecastAdapter adapter;
    private NWSInterface nws;

From source file com.afg.MngProductDatabase.Fragments.MultiSelectList_Fragment.java

/**
 * A simple {@link Fragment} subclass.
 */
public class MultiSelectList_Fragment extends ListFragment implements IProduct, ProductPresenter.View {

    public static Product p;

From source file co.juliansuarez.libwizardpager.wizard.ui.ReviewFragment.java

public class ReviewFragment extends ListFragment implements ModelCallbacks {
    private Callbacks mCallbacks;
    private AbstractWizardModel mWizardModel;
    private List<ReviewItem> mCurrentReviewItems;

    private ReviewAdapter mReviewAdapter;