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.conferenceengineer.android.iosched.ui.ExploreFragment.java

/**
 * A simple {@link ListFragment} that renders a list of tracks with available
 * sessions or sandbox companies (depending on {@link ExploreFragment#VIEW_TYPE}) using a
 * {@link TracksAdapter}.
 */
public class ExploreFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor> {

From source file com.google.training.cpd200.conference.android.ConferenceListFragment.java

public class ConferenceListFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<List<DecoratedConference>> {

    private static final String TAG = "ConferenceListFragment";

    private ConferenceDataAdapter mAdapter;

From source file com.audacity.booster.fragments.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 cn.newgxu.android.notty.ui.AuthedUsersFragment.java

/**
 * ??
 * @author longkai()
 * @email  im.longkai@gmail.com
 * @since  2013-6-5
 */

From source file com.gdgdevfest.android.apps.devfestbcn.ui.SandboxFragment.java

/**
 * A {@link ListFragment} showing a list of sandbox comapnies.
 */
public class SandboxFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor> {
    private static final String TAG = makeLogTag(SandboxFragment.class);

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

public class CategoriesListFragment extends ListFragment
        implements SharedPreferences.OnSharedPreferenceChangeListener {
    static String[] items = { "Astrophysics", "Condensed Matter", "Computer Science", "General Relativity",
            "HEP Experiment", "HEP Lattice", "HEP Phenomenology", "HEP Theory", "Mathematics",
            "Mathematical Physics", "Misc Physics", "Nonlinear Sciences", "Nuclear Experiment", "Nuclear Theory",
            "Quantitative Biology", "Quantitative Finance", "Quantum Physics", "Statistics" };

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

/**
 * A list fragment representing a list of Products. 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 ProductDetailFragment}.
 * <p/>

From source file com.conferenceengineer.android.iosched.ui.SandboxFragment.java

/**
 * A {@link ListFragment} showing a list of sandbox comapnies.
 */
public class SandboxFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor> {
    private static final String TAG = makeLogTag(SandboxFragment.class);

From source file com.example.xyzreader.cp5.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.commonsware.android.arXiv.ArticleListFragment.java

public class ArticleListFragment extends ListFragment
        implements arXivLoader.arXivLoaderCallbacks, AbsListView.OnScrollListener {
    private int firstResult = 1, resultsPerLoad = 30;
    private int currentFirstVisibleItem, currentVisibleItemCount, currentScrollState, totalCount;
    private long feedId;
    private int fontSize = 16;