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 authenticatorStuff.AccountAuthenticatorActivity.java

/**
 * Base class for implementing an Activity that is used to help implement an
 * AbstractAccountAuthenticator. If the AbstractAccountAuthenticator needs to use an activity
 * to handle the request then it can have the activity extend AccountAuthenticatorActivity.
 * The AbstractAccountAuthenticator passes in the response to the intent using the following:
 * <pre>

From source file cn.ucai.foraging.activity.BaseActivity.java

public class BaseActivity extends FragmentActivity {

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

From source file com.android.cts.uiautomator.SinglePaneDetailActivity.java

public class SinglePaneDetailActivity extends FragmentActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.singlepane_activity);

From source file cn.ucai.SuperWechat.activity.BaseActivity.java

public class BaseActivity extends FragmentActivity {

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

From source file cn.hbm.superwechat.activity.BaseActivity.java

public class BaseActivity extends FragmentActivity {

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

From source file com.afzal.sleepytime.utils.ActionBarActivity.java

/**
 * A base activity that defers common functionality across app activities to an {@link
 * ActionBarHelper}.
 *
 * NOTE: dynamically marking menu items as invisible/visible is not currently supported.
 *

From source file android.app.actionbarcompat.ActionBarActivity.java

/**
 * A base activity that defers common functionality across app activities to an {@link
 * ActionBarHelper}.
 *
 * NOTE: dynamically marking menu items as invisible/visible is not currently supported.
 *

From source file at.wada811.android.library.demos.SplashActivity.java

public class SplashActivity extends FragmentActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // catch UncaughtException
        Thread.setDefaultUncaughtExceptionHandler(new CrashExceptionHandler(getApplicationContext()));

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

public class ActionBarOverlay extends FragmentActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
        super.onCreate(savedInstanceState);
        setContentView(R.layout.actionbar_overlay);

From source file com.androidformenhancer.test.DefaultFragmentActivity.java

/**
 * @author Soichiro Kashima
 */
public class DefaultFragmentActivity extends FragmentActivity {

    @Override