Action Bar Action Bar Contains Logo Application Name Options Menu SW in Android 3.0 and above was HW in Older Versions.

Slides:



Advertisements
Similar presentations
Intro to Office 2007 Instructor: Lynn Lee How to make the transition from 2003 to 2007.
Advertisements

Microsoft Power Point for beginners.
Quick Start to Using GWAEA Data Tools for Teachers By Grant Wood Area Education Agency Office of Planning & Development March, 2004.
MARKETPLACE TRANSITION FROM CLASSIC INTERFACE TO PHOENIX INTERFACE.
SM Online Group Administration Technical Configuration & Testing O L G A.
Contensis Training Audit Trail – What does it show me?
CE881: Mobile and Social Application Programming Simon M. Lucas Menus and Dialogs.
1 NewSouth HR InquiriesAllowances. 2 Select New South HR by a left mouse click once on NewSouth HR icon.
Step-by-Step: Set Margins Before you begin these steps, be sure to launch Word. 1.OPEN the proposal file for this lesson. 2.Delete the extra blank lines.
Tackling Android Fragmentation Dev:Mobile Inmeta consulting 16 klocs – not rocket science.
1 Migration of Business Objects XI from R2 to R3 July 1, 2009 Office of the Chief Financial Officer Fiscal Management Information System Team This presentation.
Overview Lesson 1. Objectives Step-by-Step: Start Excel 1.Click the Start menu, and then click All Programs. 2.On the list of programs, click Microsoft.
Separating from SMS in Your BlackBerry 8800 Separating from SMS in Your BlackBerry 8800 In this training module you will learn how to separate.
Cosc 5/4730 Blackberry and Android: Menus. BLACKBERRY.
Anatomy of the Initial Search Screen. The initial search screen of the catalog.
Customer Care: How to Order Replacement Parts Using RPP.
Using the File Manager WebCT 6. Understanding File Manager The File Manager is the area where all course files are stored. Whenever you link a file in.
8/4/2015Word Differences Between Word 2003 to 2007 Purdue University Calumet Word 2003 Word 2007.
Cosc 4730 Android TabActivity and ListView. TabActivity A TabActivity allows for multiple “tabs”. – Each Tab is it’s own activity and the “root” activity.
Android Development (Basics)
 Experiment with the Design features to get the look you want for your presentation.  Most design templates will keep the design the same on all your.
Android 11: The Action Bar Kirk Scott
Slide 1 of 19 Welcome to GSA’s Vendor and Customer Self Service (VCSS) course Section 7: Correspondence Navigation This presentation is compliant with.
Who Wants to be a Millionaire? Web Page Development Dreamweaver Chapter 1.
1 InStar Studio Product Release December The AMS InStar Studio release results in a move to a more powerful and scalable platform for huge future.
© 2006 Herrmann International Next Page and Herrmann International Herrmann International is pleased.
@2011 Mihail L. Sichitiu1 Android Introduction GUI Menu Many thanks to Jun Bum Lim for his help with this tutorial.
Competitors Task - Research competitors with a criteria and produce a list of positive/negatives on each thing such as colour scheme, functionality, features.
Learningcomputer.com Introduction to Microsoft Word 2007 New Look and Feel.
What’s New - PowerPoint.  New design templates (“Themes”)  New layouts  New effects for objects and text  New charts (“SmartArt”)
Retail Training Manuel 2 Overview  One stop, secure, and easy-to-use web-based tool that incorporates rate, quote, and bind functions  Enables agents.
Learningcomputer.com.  Microsoft Office 2007 has replaced the Menu and Standard Toolbar with a new feature called the “Ribbon”  This new interface improves.
Microsoft Access 2013 Simplify Data Entry with Forms Chapter 3.
Create Navigation Drawer Team 2 Zhong Wang Jiaming Dong Philip Wu Lingduo Kong.
Programming Mobile Applications with Android September, Albacete, Spain Jesus Martínez-Gómez.
From the initial (HINARI) PubMed page, we will run the HIV and pregnancy search and then apply various Filters. Note the to Advanced search and Help options.
Screens are a direct copy of the physical text. To learn the material for this course, begin by reading the textbook section. At first glance, the pages.
3 rd Angle Orthographic Projection in SolidWorks version 10 designtechnology 1. Open you Assembly drawing in SolidWorks. Minimise it and then opt for File.
Nissan FAST Installation
The Advanced Manufacturing System Advanced Dealer Training Version 3.0.
Home Screen and Home Menu Options Help Instructions and Screen Shots 1 GOeXfuze Help Instructions and Pictures. Copyright 2014 eXfuze LLC. VCN v1-GOEXFHOMESCRN-USA.enu.
Searches and Search Results 1 CONFIDENTIAL - LPS Real Estate Group Client Use Only.
Android Using Menus Notes are based on: The Busy Coder's Guide to Android Development by Mark L. Murphy Copyright © CommonsWare, LLC. ISBN:
Styles, Dialog Boxes, and Menus. Styles Allow creation of a common format – placed in res/values/styles.xml – file name is incidental Can be applied.
Reducing Your Carbon Footprint, One Android App at a Time Doug Burkhalter Chris Truitt.
Android Application Lifecycle and Menus
CS378 - Mobile Computing More UI - Part 2. Special Menus Two special application menus – options menu – context menu Options menu replaced by action bar.
More UI Action Bar, Navigation, and Fragments
Lecture 8 the Preference Menu. Settings... Sudoku settings s Music Play background music Hints Show hints during play We add some strings to the strings.xml.
Creating a Google Site For a Digital Portfolio Purpose.
7/3/2016PowerPoint Computer Software System Software Operating System S/w (DOS, Unix, Linux, OS/2, Windows) Utilities s/w Scandisk, NDD, PCtools.
Menus. Menus are a common user interface component in many types of applications. The options menu is the primary collection of menu items for an activity.
Android Programming - Features
Value-Added Services Icon Sets
GUI Programming Fundamentals
Chapter 2 Starting a Project
Making PowerPoints FUN
Android Widgets 1 7 August 2018
Mobile Application Development BSCS-7 Lecture # 11
Adding Post Type Archive in WordPress Navigation Menus Guided By: wpglobalsupportwpglobalsupport.
Lesson 8: Granting Patient List [Proxy] Access
Transition from Classic Interface Phoenix Interface to
Depreciation App: Demo of tabs
Horizontal Centering Using the menu bar
Lesson 8: Granting Patient List [Proxy] Access
Lesson Nine: Granting Patient List (Proxy) Access
[Update PPE for Worker] Worker Register
What’s New in Canvas? Rhonda Bauerlein.
Mobile Programmming Dr. Mohsin Ali Memon.
Presentation transcript:

Action Bar Action Bar Contains Logo Application Name Options Menu SW in Android 3.0 and above was HW in Older Versions

Action Bar & Options Menu Older Versions vs Newer Versions

Options Menu public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu adding items to the action bar getMenuInflater().inflate(R.menu.my, menu); return true; }

Menu Items If (menu items do not displayed in the action bar) → {they are shown in the overflow menu} Otherwise → {they are called action items}

ShowAsAction Values

Menu Item Icon (1) 1- System Drawable Resources (android.R.drawable) contains many suitable menu icons should not be used directly

Menu Item Icon (2) 2- Other Resources resource.html resource.html

onOptionsItemSelected Toast.makeText( getApplicationContext(), item.getTitle(), Toast.LENGTH_SHORT).show();

Action Bar New Features 1- Drop Down Navigation * R.layout.simple_spinner_item (Spinner) * R.layout.simple_spinner_dropdown_item (AutoCompleteTextView) * Creating Custom Layout 2- Tabs for Navigation

Drop Down Navigation Code

Tabs for Navigation Code

Old Android Versions Tips Use menu options only Create an initial branching activity if (android.os.Build.VERSION.SDK_INT>= android.os.Build.VERSION_CODES.HONEYCOMB) {} Create a layout for versions lower than Honeycomb Use a third-party product called ActionBarSherlock