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 com.appsol.sharewithcontact.ui.ContactsListActivity.java

/**
 * FragmentActivity to hold the main {@link ContactsListFragment}. On larger screen devices which
 * can fit two panes also load {@link ContactDetailFragment}.
 */
public class ContactsListActivity extends FragmentActivity
        implements ContactsListFragment.OnContactsInteractionListener {

From source file br.pro.menotti.opus.pt.DisplayBooks.java

public class DisplayBooks extends FragmentActivity {

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

From source file com.ambantis.magic.views.FragmentStackSupport.java

public class FragmentStackSupport extends FragmentActivity {
    int mStackLevel = 1;
    int mIndex;
    public static final String INDEX_ID = "index_id";

    @Override

From source file cn.com.nggirl.ngdemo.transition.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,

From source file app.hacked.ChallengeDetailsActivity.java

public class ChallengeDetailsActivity extends FragmentActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.challenge_details_activity);

From source file com.abcvoipsip.ui.messages.MessageActivity.java

public class MessageActivity extends FragmentActivity implements OnQuitListener {

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

From source file android.hawkencompanionapp.activities.BaseActivity.java

/**
 * Created by Phillip Adam Nash on 08/08/2014.
 *
 * A base class for all of the activities use in the application.
 * Common functionalities between all of the activities should be
 * added here.

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

/**
 * Demonstrates how fragments can participate in the options menu.
 */
public class FragmentMenuSupport extends FragmentActivity {
    Fragment mFragment1;
    Fragment mFragment2;

From source file at.alladin.rmbt.android.terms.RMBTTermsActivity.java

public class RMBTTermsActivity extends FragmentActivity {
    public final static String EXTRA_KEY_CHECK_TYPE = "check_type";

    public final static String EXTRA_KEY_CHECK_TERMS_AND_COND = "check_t&c";

    private CheckType checkType = null;

From source file ca.taglab.PictureFrame.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,