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

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

Introduction

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

Usage

From source file br.org.funcate.dynamicforms.FormActivity.java

/**
 * The form activity.
 * <p/>
 * <p>This returns an array of {@link String} data that can be retrieved
 * through: {@link LibraryConstants#PREFS_KEY_FORM} and contain:</p>
 * <ul>

From source file com.andrew.apollo.menu.PlaylistDialog.java

public class PlaylistDialog extends FragmentActivity
        implements Constants, TextWatcher, OnCancelListener, OnShowListener {

    private AlertDialog mPlaylistDialog;

    private String action;

From source file android.support.v7.app.ActionBarActivity.java

/**
 * Base class for activities that use the support library action bar features.
 */
public class ActionBarActivity extends FragmentActivity
        implements ActionBar.Callback, TaskStackBuilder.SupportParentable, ActionBarDrawerToggle.DelegateProvider {
    ActionBarActivityDelegate mImpl;

From source file app.akexorcist.googledapsample.DirectionActivity3.java

public class DirectionActivity3 extends FragmentActivity {
    LatLng start = new LatLng(13.744246499553903, 100.53428772836924);
    LatLng end = new LatLng(13.751279688694071, 100.54316081106663);

    TextView textProgress;
    Button buttonAnimate, buttonRequest;

From source file com.acdd.homelauncher.MainActivity.java

public class MainActivity extends FragmentActivity {
    /* The number of pages (wizard steps) to show in this demo.
    */
    private static final int NUM_PAGES = 5;

    /**

From source file app.akexorcist.googledapsample.DirectionActivity1.java

public class DirectionActivity1 extends FragmentActivity {
    LatLng start = new LatLng(13.744246499553903, 100.53428772836924);
    LatLng end = new LatLng(13.751279688694071, 100.54316081106663);

    TextView textProgress;
    Button buttonAnimate, buttonRequest;

From source file au.com.cybersearch2.classyfy.TitleSearchResultsActivity.java

/**
 * TitleSearchResultsActivity
 * Display record lists requested by search action and record details from search action or record selection
 * @author Andrew Bowley
 * 21/04/2014
 */

From source file app.socialgps.ui.MainActivity.java

public class MainActivity extends FragmentActivity {
    private DrawerLayout mDrawerLayout;
    private ListView mDrawerList;
    private ActionBarDrawerToggle mDrawerToggle;
    private CharSequence mDrawerTitle;
    private CharSequence mTitle;

From source file com.androidgames.sleepytrout.HelloFacebookSampleActivity.java

public class HelloFacebookSampleActivity extends FragmentActivity {

    private static final String PERMISSION = "publish_actions";

    private final String PENDING_ACTION_BUNDLE_KEY = "HelloFacebookSampleActivity:PendingAction";

From source file ch.ethz.twimight.activities.TwimightBaseActivity.java

/**
 * The base activity for all Twimight activities.
 * 
 * @author thossmann
 * 
 */