Example usage for android.app ListFragment subclass-usage

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

Introduction

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

Usage

From source file com.test.cc.SwipeRefreshListFragment.java

/**
 * Subclass of {@link android.support.v4.app.ListFragment} which provides automatic support for
 * providing the 'swipe-to-refresh' UX gesture by wrapping the the content view in a
 * {@link android.support.v4.widget.SwipeRefreshLayout}.
 */
public class SwipeRefreshListFragment extends ListFragment {

From source file com.meg7.soas.ui.fragment.SwipeRefreshListFragment.java

/**
 * Subclass of {@link ListFragment} which provides automatic support for
 * providing the 'swipe-to-refresh' UX gesture by wrapping the the content view in a
 * {@link android.support.v4.widget.SwipeRefreshLayout}.
 */
// Based on https://developer.android.com/samples/SwipeRefreshListFragment/src/com.example.android.swiperefreshlistfragment/SwipeRefreshListFragment.html

From source file club.frickel.feelathome.DeviceListFragment.java

public class DeviceListFragment extends ListFragment {
    ObjectMapper mapper;

    private class DeviceArrayAdapter extends ArrayAdapter<Device> {

        private ArrayList<Device> deviceList;

From source file pl.motyczko.scrollheadersample.HeaderListFragment.java

/**
 * @author Andrew Neal (andrewdneal@gmail.com)
 */
public class HeaderListFragment extends ListFragment {
    /**
     * List content

From source file can.yrt.onebusaway.MyListFragmentBase.java

/**
 * Base class for the stop/route list fragments.
 * Immediate base class for MyStopListFragmentBase/MyRouteListFragmentBase
 * Ancestor of:
 * MyRecentRoutesFragment
 * MyRecentStopsFragment

From source file com.joulespersecond.seattlebusbot.MyListFragmentBase.java

/**
 * Base class for the stop/route list fragments.
 * Immediate base class for MyStopListFragmentBase/MyRouteListFragmentBase
 * Ancestor of:
 * MyRecentRoutesFragment
 * MyRecentStopsFragment

From source file org.physical_web.physicalweb.DemosFragment.java

/**
 * This class shows a list of demos.
 */
public class DemosFragment extends ListFragment {
    private static final String TAG = DemosFragment.class.getSimpleName();
    private DemosAdapter mAdapter;

From source file com.commonsware.android.eventbus.lbm.EventLogFragment.java

public class EventLogFragment extends ListFragment {
    static final String EXTRA_RANDOM = "r";
    static final String EXTRA_TIME = "t";
    static final String ACTION_EVENT = "e";
    private EventLogAdapter adapter = null;

From source file com.acrylicgoat.bcponline.fragments.CPListFragment.java

/**
 * @author Ed Woodward
 *
 */
public class CPListFragment extends ListFragment {
    private OnDDGSelectedListener ddgSelectedListener;

From source file com.sawyer.advadapters.app.adapters.jsonadapter.JSONAdapterFragment.java

public class JSONAdapterFragment extends ListFragment {
    private static final String STATE_CAB_CHECKED_COUNT = "State Cab Checked Count";
    private static final String STATE_LIST = "State List";

    private int mCheckedCount;
    private EventListener mEventListener;