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.anand.wizardpager.wizard.ui.SingleChoiceFragment.java

public class SingleChoiceFragment extends ListFragment {
    private static final String ARG_KEY = "key";

    private PageFragmentCallbacks mCallbacks;
    private List<String> mChoices;
    private String mKey;

From source file com.google.sample.cast.refplayer.browser.VideoBrowserListFragment.java

public class VideoBrowserListFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<List<MediaInfo>> {

    private static final String TAG = "VideoBrowserListFragment";
    private static final String CATALOG_URL = "https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/d.json";
    private VideoListAdapter mAdapter;

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

public class SingleChoiceFragment extends ListFragment {
    private static final String ARG_KEY = "key";

    private PageFragmentCallbacks mCallbacks;
    private List<String> mChoices;
    private String mKey;

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

public class SingleChoiceFragment extends ListFragment {
    private static final String ARG_KEY = "key";

    private PageFragmentCallbacks mCallbacks;
    private List<String> mChoices;
    private String mKey;

From source file com.foodsurvey.foodsurvey.wizard.SingleChoiceFragment.java

/**
 * UI for surveyees to choose a single option from a list of options
 *
 * @author Hee Jun Yi
 */
public class SingleChoiceFragment extends ListFragment {

From source file at.wada811.android.dialogfragments.sample.progressdialogfragment.ProgressDialogFragmentExamplesFragment.java

public class ProgressDialogFragmentExamplesFragment extends ListFragment {

    private ArrayList<Examples> items;

    public static ProgressDialogFragmentExamplesFragment newInstance() {
        ProgressDialogFragmentExamplesFragment fragment = new ProgressDialogFragmentExamplesFragment();

From source file com.google.android.apps.iosched.ui.TrackInfoHelperFragment.java

/**
 * A retained, non-UI helper fragment that loads track information such as name, color, etc.
 */
public class TrackInfoHelperFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor> {

    /**

From source file com.commonsware.android.hurl.QuestionsFragment.java

public class QuestionsFragment extends ListFragment {
    private boolean loadRequested = false;

    public interface Contract {
        void onQuestion(Item question);
    }

From source file com.example.android.wizardpager.wizard.ui.TrueOrFalseFragment.java

public class TrueOrFalseFragment extends ListFragment {
    private static final String ARG_KEY = "key";

    private PageFragmentCallbacks mCallbacks;
    private List<String> mChoices;
    private String mKey;

From source file at.bitfire.davdroid.ui.AccountListFragment.java

public class AccountListFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<Account[]>, AdapterView.OnItemClickListener {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        setListAdapter(new AccountListAdapter(getContext()));