Example usage for android.app FragmentManager.OnBackStackChangedListener interface-usage

List of usage examples for android.app FragmentManager.OnBackStackChangedListener interface-usage

Introduction

In this page you can find the example usage for android.app FragmentManager.OnBackStackChangedListener interface-usage.

Usage

From source file com.grepsound.activities.MainActivity.java

/**
 * "THE BEER-WARE LICENSE" (Revision 42):
 * <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return
 * <p/>

From source file org.openaccessbutton.openaccessbutton.MainActivity.java

/**
 * Wrapper activity that provides navigation for the entire app, and loads the relevant fragment
 * based on that navigation.
 */
public class MainActivity extends ActionBarActivity
        implements OnFragmentNeededListener, FragmentManager.OnBackStackChangedListener, OnShareIntentInterface {

From source file subhamguptaminor.androidbelieve.drawerwithswipetabs.CardFlipActivity.java

/**
 * Demonstrates a "card-flip" animation using custom fragment transactions ({@link
 * android.app.FragmentTransaction#setCustomAnimations(int, int)}).
 *
 * <p>This sample shows an "info" action bar button that shows the back of a "card", rotating the
 * front of the card out and the back of the card in. The reverse animation is played when the user

From source file com.example.android.animationsdemo.CardFlipActivity.java

            getFragmentManager().beginTransaction().add(R.id.container, new CardFrontFragment()).commit();
        } else {
            mShowingBack = (getFragmentManager().getBackStackEntryCount() > 0);
        }

        // Monitor back stack changes to ensure the action bar shows the appropriate

From source file eu.istvank.apps.lenslog.activities.MainActivity.java

public class MainActivity extends ActionBarActivity
        implements NavigationDrawerFragment.NavigationDrawerCallbacks, LensesFragment.OnPackageSelectedListener,
        FragmentManager.OnBackStackChangedListener, CalendarFragment.OnUpdateWornListener {

    public static final String TAG = "MainActivity";

From source file com.velli.passwordmanager.filepicker.ActivityFilePicker.java

public class ActivityFilePicker extends AppCompatActivity
        implements AdapterView.OnItemSelectedListener, FragmentManager.OnBackStackChangedListener,
        FragmentFileList.OnFileClickedListener, View.OnClickListener, TextWatcher {
    public static final String INTENT_EXTRA_MODE = "mode";
    public static final String INTENT_EXTRA_FILE_EXTENSION = "file extension";
    public static final String INTENT_EXTRA_FILENAME = "filename";

From source file org.catnut.ui.MainActivity.java

/**
 * ??
 *
 * @author longkai
 */
public class MainActivity extends Activity implements DrawerLayout.DrawerListener, View.OnClickListener,

From source file com.ant.sunshine.app.activities.MainActivity.java

public class MainActivity extends AppCompatActivity
        implements ForecastFragment.Callback, MapLocationFragment.Callback,
        FragmentManager.OnBackStackChangedListener, GoogleApiClient.OnConnectionFailedListener {

    private final String LOG_TAG = MainActivity.class.getSimpleName();
    private static final String DETAILFRAGMENT_TAG = "DFTAG";

From source file com.raspi.chatapp.ui.chatting.ChatActivity.java

/**
 * This activity is the main Activity which is being started and contains the
 * {@link ChatListFragment}, the {@link ChatFragment} and the {@link
 * SendImageFragment}.<br>
 * Here is the backstack managed and the callbacks from the fragments are
 * implemented.

From source file com.pdmanager.views.caregiver.CaregiverActivity.java

public class CaregiverActivity extends ActionBarActivity implements
        CaregiverDrawerFragment.NavigationDrawerCallbacks, android.support.v7.app.ActionBar.OnNavigationListener,
        TransitionHandler, TrackedActivity, FragmentManager.OnBackStackChangedListener, INetworkStatusHandler,
        VideoApp.OperationChangeListener, VideoApp.CallNegotiationListener {

    private final Handler toastHandler = new Handler() {