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.election.US.basicsyncadapter.EntryListFragment.java

/**
 * List fragment containing a list of Atom entry objects (articles) stored in the local database.
 *
 * <p>Database access is mediated by a content provider, specified in
 * {@link FeedProvider}. This content
 * provider is

From source file co.uk.alt236.restclient4android.fragments.FragmentHeaders.java

public class FragmentHeaders extends ListFragment implements RestRequestFragmentInterface {
    private final String TAG = this.getClass().getName();
    // This is the Adapter being used to display the list's data.
    HeadersListAdapter mAdapter;

    @Override

From source file com.flowzr.budget.holo.activity.AbstractTotalListFragment.java

public abstract class AbstractTotalListFragment extends ListFragment implements RefreshSupportedActivity {

    protected static final int MENU_VIEW = Menu.FIRST + 1;
    protected static final int MENU_EDIT = Menu.FIRST + 2;
    protected static final int MENU_DELETE = Menu.FIRST + 3;
    protected static final int MENU_ADD = Menu.FIRST + 4;

From source file app.hacked.ProjectListFragment.java

public class ProjectListFragment extends ListFragment {
    /*TrapListAdapter adapter = null;
    TrapsDataSource datasource = null;*/

    RequestQueue queue = null;

From source file com.example.nitish.welcomapp.activitypt.ElementListFragment.java

/**
 * This Fragment displays a sortable filterable list of all the elements. Clicking on an item
 * will launch an ElementDetailsFragment for the selected element.
 *
 * @author Steve Guidetti
 */

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

/**
 * A {@link ListFragment} showing a list of sessions.
 */
public class SessionsFragment extends ListFragment implements NotifyingAsyncQueryHandler.AsyncQueryListener {

    public static final String EXTRA_SCHEDULE_TIME_STRING = "com.google.android.iosched.extra.SCHEDULE_TIME_STRING";

From source file com.github.michalbednarski.intentslab.clipboard.ClipboardItemsFragment.java

/**
* Created by mb on 15.02.14.
*/
public class ClipboardItemsFragment extends ListFragment implements EditorLauncher.EditorLauncherCallback {
    static ArrayList<ClipboardItemsFragment> sObservers = new ArrayList<ClipboardItemsFragment>();

From source file com.francetelecom.rd.app.nodessimulator.NodeListFragment.java

/**
 * A list fragment representing a list of Devices. This fragment also supports
 * tablet devices by allowing list items to be given an 'activated' state upon
 * selection. This helps indicate which item is currently being viewed in a
 * {@link NodeDetailFragment}.
 * <p>

From source file com.gmail.at.faint545.fragments.HistoryFragment.java

public class HistoryFragment extends ListFragment
        implements HistoryActionTaskListener, HistoryDownloadTaskListener {
    private RemoteHistoryAdapter mAdapter;
    private ArrayList<JSONObject> mOldJobs = new ArrayList<JSONObject>();
    private ArrayList<Integer> mSelectedPositions = new ArrayList<Integer>();
    private PullToRefreshListView mPtrView;

From source file at.ac.uniklu.mobile.sportal.CalendarFragment.java

public class CalendarFragment extends ListFragment
        implements ProgressNotificationToggle, Refreshable, OnScrollListener {

    private class CalendarSLA extends SectionedListAdapter<Termin, Date> {

        private Date mYearSwitch;