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.app4am.app4am.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.ayoview.sample.textview.badge.ListFragment.java

/**
 * Demonstrates the BadgeView with a ListView.
 * Based on Android API-Demos -> List14
 */
public class ListFragment extends android.support.v4.app.ListFragment {

From source file com.emartynov.android.app.urlsetter.android.ui.fragment.UrlListFragment.java

public class UrlListFragment extends ListFragment {

    public static final String KEYS = "KEYS";

    public static final String VALUES = "VALUES";

From source file com.eyebrowssoftware.bloa.activities.BloaUserTimelineFragment.java

public class BloaUserTimelineFragment extends ListFragment implements LoaderCallbacks<Cursor> {

    private static final int[] IDS = { android.R.id.text1, android.R.id.text2 };

    @Override
    public void onCreate(Bundle savedInstanceState) {

From source file com.example.android.uvdemo.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.edu.library.filechooser.FileListFragment.java

/**
 * Fragment that displays a list of Files in a given path.
 * 
 * @version 2013-12-11
 * @author paulburke (ipaulpro)
 */

From source file ca.psiphon.ploggy.FragmentLogEntries.java

/**
 * User interface which displays a list of log entries
 *
 * This class registers as a Log Observer to update displayed data
 * while in the foreground.
 */

From source file at.bitfire.davdroid.syncadapter.SelectCollectionsFragment.java

public class SelectCollectionsFragment extends ListFragment {
    public static final String KEY_SERVER_INFO = "server_info";

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View v = super.onCreateView(inflater, container, savedInstanceState);

From source file com.glanznig.beepme.view.HistoryFragment.java

public class HistoryFragment extends ListFragment {

    private static final String TAG = "HistoryFragment";

    private int position = 0;

From source file com.example.android.swiperefreshlistfragment.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 {