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 cn.kangeqiu.kq.activity.BaseActivity.java

public class BaseActivity extends FragmentActivity {
    private static final int notifiId = 11;
    protected NotificationManager notificationManager;

    @Override
    protected void onCreate(Bundle arg0) {

From source file com.activiti.android.app.activity.WelcomeActivity.java

/**
 * A login screen that offers login via email/password.
 */
public class WelcomeActivity extends FragmentActivity {
    public static final String EXTRA_ADD_ACCOUNT = "addAccount";

From source file com.android.samples.CollectionDemoActivity.java

public class CollectionDemoActivity extends FragmentActivity {

    /**
     * The {@link android.support.v4.view.PagerAdapter} that will provide fragments representing
     * each object in a collection. We use a {@link android.support.v4.app.FragmentStatePagerAdapter}
     * derivative, which will destroy and re-create fragments as needed, saving and restoring their

From source file com.android.aft.AFApplicationHelper.activity.AFFragmentActivity.java

public abstract class AFFragmentActivity extends FragmentActivity implements Observer {
    protected ArrayList<Observable> mLstObservables = new ArrayList<Observable>();

    private static boolean mActivityIsInBackground = false;

    @Override

From source file be.phl.mosaqua.Locator.java

/**
 * This shows how to create a simple activity with a raw MapView and add a marker to it. This
 * requires forwarding all the important lifecycle methods onto MapView.
 */
public class Locator extends FragmentActivity {

From source file com.actionbarsherlock.sample.demos.app.FragmentDialogSupport.java

public class FragmentDialogSupport extends FragmentActivity {
    int mStackLevel = 0;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

From source file com.agilemessage.ameffectivenavigation.CollectionDemoActivity.java

public class CollectionDemoActivity extends FragmentActivity {

    /**
     * The {@link android.support.v4.view.PagerAdapter} that will provide fragments representing
     * each object in a collection. We use a {@link android.support.v4.app.FragmentStatePagerAdapter}
     * derivative, which will destroy and re-create fragments as needed, saving and restoring their

From source file com.android.projectesang.MainActivity.java

public class MainActivity extends FragmentActivity implements ActionBar.TabListener {

    /**
     * The {@link android.support.v4.view.PagerAdapter} that will provide fragments for each of the
     * three primary sections of the app. We use a {@link android.support.v4.app.FragmentPagerAdapter}
     * derivative, which will keep every loaded fragment in memory. If this becomes too memory

From source file br.com.split.activities.FacebookEscolherLocalActivity.java

public class FacebookEscolherLocalActivity extends FragmentActivity implements LocationListener {
    private static final int PLACE_ACTIVITY = 1;
    private LocationManager locationManager;
    private Location lastKnownLocation;
    private UiLifecycleHelper lifecycleHelper;
    private Location pickPlaceForLocationWhenSessionOpened = null;

From source file com.actionbarsherlock.sample.demos.app.FragmentRetainInstanceSupport.java

/**
 * This example shows how you can use a Fragment to easily propagate state
 * (such as threads) across activity instances when an activity needs to be
 * restarted due to, for example, a configuration change.  This is a lot
 * easier than using the raw Activity.onRetainNonConfiguratinInstance() API.
 */