Example usage for android.support.v4.app Fragment subclass-usage

List of usage examples for android.support.v4.app Fragment subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.app Fragment subclass-usage.

Usage

From source file app.view.chat.ChatHistoryFragment.java

/**
 * ?Fragment
 */
public class ChatHistoryFragment extends Fragment {

    public RelativeLayout errorItem;

From source file ca.teyssedre.mailmap.views.MailListFragment.java

/**
 * This fragment will be use to manage the {@link ca.teyssedre.mailer.model.MailMessage} items.
 * All logic regarding the list will be place here. Loading action interaction tracking etc.
 */
public class MailListFragment extends Fragment {

From source file at.alladin.rmbt.android.fragments.result.QoSTestDetailPagerFragment.java

public class QoSTestDetailPagerFragment extends Fragment implements OnPageChangeListener, OnTabChangeListener {

    public final static String BUNDLE_QOS_RESULT_LIST = "result_list";

    public final static String BUNDLE_QOS_DESC_LIST = "desc_list";

From source file by.istin.android.xcore.inherited.fragment.AdapterViewFragment.java

/**
 * Do just the same as a ListFragment, but for a generic AdapterView, instead of ListView
 */
public class AdapterViewFragment extends Fragment {
    static final int INTERNAL_EMPTY_ID = 0x00ff0001;
    static final int INTERNAL_PROGRESS_CONTAINER_ID = 0x00ff0002;

From source file at.maui.cheapcast.fragment.DonationsFragment.java

public class DonationsFragment extends Fragment {

    public static final String ARG_DEBUG = "debug";

    public static final String ARG_PAYPAL_ENABLED = "paypalEnabled";
    public static final String ARG_PAYPAL_USER = "paypalUser";

From source file ca.ualberta.cs.swapmyride.View.Tab1.java

/**
 * The view that displays friends feeds
 */
public class Tab1 extends Fragment {

    ListView inventory;

From source file by.istin.android.xcore.fragment.AdapterViewFragment.java

/**
 * Static library support version of the framework's {@link android.app.ListFragment}.
 * Used to write apps that run on platforms prior to Android 3.0.  When running
 * on Android 3.0 or above, this implementation is still used; it does not try
 * to switch to the framework's implementation.  See the framework SDK
 * documentation for a class overview.

From source file alberthsu.sunshine.app.ForecastFragment.java

/**
 * Encapsulates fetching the forecast and displaying it as a {@link ListView} layout.
 */
public class ForecastFragment extends Fragment implements LoaderCallbacks<Cursor> {

    private SimpleCursorAdapter mForecastAdapter;

From source file biz.easymenu.easymenung.PayBillFragment.java

public class PayBillFragment extends Fragment {

    private TableLayout tlf = null;
    private TableLayout tlc = null;
    private String jsonStr = null;
    private Emrpc rpc = null;

From source file at.jclehner.rxdroid.ui.DialogLike.java

public class DialogLike extends Fragment {
    public interface OnButtonClickListener {
        abstract void onButtonClick(DialogLike dialogLike, int which);
    }

    public static final int BUTTON_POSITIVE = DialogInterface.BUTTON_POSITIVE;