Example usage for android.app ActionBar.OnNavigationListener interface-usage

List of usage examples for android.app ActionBar.OnNavigationListener interface-usage

Introduction

In this page you can find the example usage for android.app ActionBar.OnNavigationListener interface-usage.

Usage

From source file com.google.adsensequickstart.MainActivity.java

/**
 * Main activity of the AdSense Quickstart sample application.
 */
public class MainActivity extends FragmentActivity
        implements ActionBar.OnNavigationListener, UiController, AsyncTaskController {

From source file org.thialfihar.android.apg.ui.ImportKeysActivity.java

public class ImportKeysActivity extends DrawerActivity implements ActionBar.OnNavigationListener {
    public static final String ACTION_IMPORT_KEY = Constants.INTENT_PREFIX + "IMPORT_KEY";
    public static final String ACTION_IMPORT_KEY_FROM_QR_CODE = Constants.INTENT_PREFIX + "IMPORT_KEY_FROM_QR_CODE";
    public static final String ACTION_IMPORT_KEY_FROM_KEYSERVER = Constants.INTENT_PREFIX
            + "IMPORT_KEY_FROM_KEYSERVER";
    // TODO: implement:

From source file org.svij.taskwarriorapp.TasksActivity.java

public class TasksActivity extends SherlockFragmentActivity implements ActionBar.OnNavigationListener {
    private static final String PROJECT = "project";
    private static final String STATE_SELECTED_NAVIGATION_ITEM = "selected_navigation_item";
    private ArrayListFragment listFragment;
    private SlidingPaneLayout paneLayout;

From source file com.aknowledge.v1.automation.RemoteActivity.java

public class RemoteActivity extends Activity
        implements ActionBar.OnNavigationListener, RemotePanelFragment.onButtonClickListener {

    private static final String STATE_SELECTED_NAVIGATION_ITEM = "selected_navigation_item";
    // don't want to check objects and preferences too often.
    protected PyHomeController myApp;

From source file com.gdgdevfest.android.apps.devfestbcn.ui.tablet.SessionsSandboxMultiPaneActivity.java

/**
 * A multi-pane activity, consisting of a {@link TracksDropdownFragment}, a
 * {@link SessionsFragment} or {@link com.gdgdevfest.android.apps.devfestbcn.ui.SandboxFragment}, and {@link SessionDetailFragment} or
 * {@link com.gdgdevfest.android.apps.devfestbcn.ui.SandboxDetailFragment}.
 *
 * This activity requires API level 11 or greater.

From source file com.example.android.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,

From source file gov.sfmta.sfpark.MainScreenActivity.java

public class MainScreenActivity extends SherlockMapActivity implements ActionBar.OnNavigationListener {

    private static final String TAG = "SFpark";
    private static final String WARNING_KEY = "SFpark:SpeedWarning";

    public static ProgressDialog pd;

From source file org.libreoffice.ui.LibreOfficeUIActivity.java

public class LibreOfficeUIActivity extends AppCompatActivity implements ActionBar.OnNavigationListener {
    private String LOGTAG = LibreOfficeUIActivity.class.getSimpleName();
    private SharedPreferences prefs;
    private int filterMode = FileUtilities.ALL;
    private int viewMode;
    private int sortMode;

From source file fr.paug.droidcon.ui.SessionLivestreamActivity.java

/**
 * An activity that displays the session live stream video which is pulled in from YouTube. The
 * UI adapts for both phone and tablet. As we want to prevent the YouTube player from restarting
 * and buffering again on orientation change, we handle configuration changes manually.
 */
public class SessionLivestreamActivity extends BaseActivity implements LoaderCallbacks<Cursor>,

From source file nrec.basil.wimuconsole.SensorSettingsActivity.java

public class SensorSettingsActivity extends FragmentActivity implements ActionBar.OnNavigationListener {
    /***************************************/
    /***    APPLICATION LEVEL SETTINGS   ***/
    /***************************************/
    private static final String TAG = "wImuConsole-SensorSettings";
    private static final boolean D = true;