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.dwdesign.tweetings.fragment.BaseListFragment.java

public class BaseListFragment extends ListFragment implements Constants {

    private final BroadcastReceiver mStateReceiver = new BroadcastReceiver() {

        @Override
        public void onReceive(final Context context, final Intent intent) {

From source file ca.etsmtl.applets.etsmobile.fragments.NewsListFragment.java

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

    // private final static String TAG =
    // "ca.etsmtl.applets.etsmobile.fragments.NewsListFragment";
    private NewsListSelectedItemListener selectedItemListener;
    private NewsCursorAdapter adapter;

From source file com.anxpp.ladder.android.view.tabcarousel.demo.DummyListFragment.java

/**
 * @author Andrew Neal (andrewdneal@gmail.com)
 */
public class DummyListFragment extends ListFragment implements OnItemClickListener {

    /**

From source file com.deliciousdroid.fragment.BrowseBundlesFragment.java

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

    private String sortfield = Bundle.Name + " ASC";
    private SimpleCursorAdapter mAdapter;

    private String username = null;

From source file com.brosmike.airpushdetector.DetectorFragment.java

/**
 * This fragment controls the main view of the application. It directly manages the details of displaying
 * the list of found apps and contains all the control buttons, but it delegates to a DetectorTaskFragment
 * for actually performing the detection work. This separation is mostly so that the DetectorTaskFragment
 * can persist through an orientation change without stopping the main UI from being able to re-render.
 */

From source file com.deliciousdroid.fragment.BrowseTagsFragment.java

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

    private String sortfield = Tag.Name + " ASC";
    private SimpleCursorAdapter mAdapter;

    private String username = null;

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

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

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

From source file com.app_software.chromisstock.ChangesFragment.java

/**
 * A fragment representing a list of Items.
 * <p/>
 * Large screen devices (such as tablets) are supported by replacing the ListView
 * with a GridView.
 * <p/>

From source file com.example.xyzreader.cp0.ArticleListFragment.java

/**
 * A list fragment representing a list of Articles. 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 ArticleDetailFragment}. <p> Activities containing this
 * fragment MUST implement the {@link Callbacks} interface.
 */

From source file com.example.xyzreader.cp1.ArticleListFragment.java

/**
 * A list fragment representing a list of Articles. 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 ArticleDetailFragment}. <p> Activities containing this
 * fragment MUST implement the {@link Callbacks} interface.
 */