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.abcvoipsip.ui.dialpad.DialerAutocompleteDetailsFragment.java

public class DialerAutocompleteDetailsFragment extends ListFragment {
    private ContactsSearchAdapter autoCompleteAdapter;
    private CharSequence constraint = "";

    @Override
    public void onCreate(Bundle savedInstanceState) {

From source file com.firefly.sample.cast.refplayer.browser.VideoBrowserListFragment.java

public class VideoBrowserListFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<List<MediaInfo>> {
    private static String sCatalogUrl;
    private VideoListAdapter mAdapter;

    /*

From source file com.example.app.tweetui.TweetListFragment.java

/**
 * Displays a layout with a ListView widget bound to a TweetViewAdapter data source.
 */
public class TweetListFragment extends ListFragment {

    final List<Long> tweetIds = new ArrayList<>();

From source file com.commonsware.android.ab.search.ActionBarFragment.java

public class ActionBarFragment extends ListFragment
        implements SearchView.OnQueryTextListener, SearchView.OnCloseListener {
    private static final String STATE_QUERY = "q";
    private static final String STATE_MODEL = "m";
    private static final String[] items = { "lorem", "ipsum", "dolor", "sit", "amet", "consectetuer", "adipiscing",
            "elit", "morbi", "vel", "ligula", "vitae", "arcu", "aliquet", "mollis", "etiam", "vel", "erat",

From source file com.gnufabio.costituzione.fragments.ListsFragment.java

public class ListsFragment extends ListFragment {

    boolean mDualPane;
    int mCurCheckPosition = 0;

    public ListsFragment() {

From source file com.flowzr.activity.ReportsListFragment.java

public class ReportsListFragment extends ListFragment {

    public static final String EXTRA_REPORT_TYPE = "reportType";

    public final ReportType[] reports = new ReportType[] { ReportType.BY_PERIOD, ReportType.BY_CATEGORY,
            ReportType.BY_PAYEE, ReportType.BY_LOCATION, ReportType.BY_PROJECT, ReportType.BY_ACCOUNT_BY_PERIOD,

From source file com.google.android.apps.iosched2.ui.TracksFragment.java

/**
 * A simple {@link ListFragment} that renders a list of tracks with available sessions or vendors
 * (depending on {@link TracksFragment#EXTRA_NEXT_TYPE}) using a {@link TracksAdapter}.
 */
public class TracksFragment extends ListFragment implements NotifyingAsyncQueryHandler.AsyncQueryListener {

From source file com.checktipsplitter.wizard.ui.SingleChoiceFragment.java

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

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

From source file com.commonsware.android.okhttp.QuestionsFragment.java

public class QuestionsFragment extends ListFragment {
    public interface Contract {
        void onQuestion(Item question);
    }

    static final String SO_URL = "https://api.stackexchange.com/2.1/questions?pagesize=100&"

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

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

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