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 at.ac.uniklu.mobile.sportal.CalendarActivity.java

public class CalendarActivity extends FragmentActivity implements Refreshable {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.calendar);

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

public class FragmentStackSupport extends FragmentActivity {
    int mStackLevel = 1;

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

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

public class FragmentCustomAnimationSupport extends FragmentActivity {
    int mStackLevel = 1;

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

From source file com.app.blockydemo.ui.BaseActivity.java

public class BaseActivity extends FragmentActivity {

    @Override
    protected void onDestroy() {
        super.onDestroy();
        // Partly from http://stackoverflow.com/a/5069354

From source file com.androidhuman.example.google.maps.v2.support.PolylineActivity.java

public class PolylineActivity extends FragmentActivity {

    SupportGoogleMap mGoogleMap;
    long polylineId = -1;

    @Override

From source file android.arch.lifecycle.testapp.SimpleAppLifecycleTestActivity.java

/**
 * Activity for SimpleAppFullLifecycleTest
 */
public class SimpleAppLifecycleTestActivity extends FragmentActivity {

    public enum TestEventType {

From source file com.androtux.MainActivity.java

public class MainActivity extends FragmentActivity implements SensorEventListener {
    private static boolean _axis;
    private float _maxRange, _multiplier;

    private SensorManager _sManager;

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

/**
 * This demonstrates how you can implement switching between the tabs of a
 * TabHost through fragments.  It uses a trick (see the code below) to allow
 * the tabs to switch between fragments instead of simple views.
 */
public class FragmentTabs extends FragmentActivity {

From source file android.example.com.animationdemos.ScreenSlideActivity.java

/**
 * Demonstrates a "screen-slide" animation using a {@link ViewPager}. Because {@link ViewPager}
 * automatically plays such an animation when calling {@link ViewPager#setCurrentItem(int)}, there
 * isn't any animation-specific code in this sample.
 * <p/>
 * <p>This sample shows a "next" button that advances the user to the next step in a wizard,

From source file com.applite.animationsdemo.ScreenSlideActivity.java

/**
 * Demonstrates a "screen-slide" animation using a {@link ViewPager}. Because {@link ViewPager}
 * automatically plays such an animation when calling {@link ViewPager#setCurrentItem(int)}, there
 * isn't any animation-specific code in this sample.
 *
 * <p>This sample shows a "next" button that advances the user to the next step in a wizard,