Android. The Toolbar

Size: px
Start display at page:

Download "Android. The Toolbar"

Transcription

1 Android The Toolbar

2 Credits Lectures are heavily based of materials and examples from: Android Programming The Big Nerd Ranch Guides Bill Phillips and Brian Hardy April 7, 2013

3 ToDoList We re going to extend the ToDoList application from Lecture 19. Here we are going to create a toolbar.

4 Toolbar vs ActionBar The toolbar is the latest style of bar as of 5.0 The actionbar was what was used prior to 5.0 We will want to ensure that our program is backwards compatible

5 AppCompat Library We need to add the app compatibility library Go to File -> Project Structure Select app -> Dependencies tab Add the library dependency appcompat-v7

6 Styles You will want to be using the appcompat Dark ActionBar in your styles

7 ActionBarActivity We know want our Activities (SingleFragmentActivity and ToDoPagerActivity) to implement ActionBarActivity rather than FragmentActivity

8 ToolBar You should now see your toolbar, at the top. Note how it says MyList

9 + Menu Item We will be adding the + menu item When clicked this item will allow the user to add a new todo item

10 Adding Strings First we ll add the strings that we need to achieve our tasks

11 Create options menu xml Under res/menu create a new file called menu_to_do_list.xml. It might already exist Here we are making that + icon for users to add new ToDo s

12 menu_to_do_list.xml The icon list here represents the + icon. It s a standard icon that comes with Android The last line says only display in Action Menu if there s room, otherwise display in overflow menu

13 Landscape The last line in the previous slide, said display text if room. On a Landscape device there is room so it ll display the text, New ToDo

14 Enabling the Menu in Code Now we need to hook up the Options Menu to the ToDoListFragment In OnCreate we need to indicate it has an Options Menu with sethasoptionsmenu

15 Connect the XML File Now we want to specify how the options in the Menu by tying it to the xml file In ToDoListFragment we ll add the following

16 See the Options Menu You should now see the options Menu If you long click on the + you ll see New Crime

17 Responding to user actions Now, when the user clicks options in the menu we want to create a new ToDo item. First, we need extend the model to allow for this.

18 ToDoSet First let s get rid of the for loop that makes the ToDos, as from now the user can make them using the program Now, make the ability to add a ToDo

19 ToDo Now, when we create a new ToDo let s set the date so we don t get any null pointers

20 Responding to user click Now in ToDoListFragment we ll need to respond to the user clicking the +

21 Now try it Add new ToDos. When you navigate back to the list screen you should see them.

22 The up button WILL SEND THE USER BACK TO THE PARENT SCREEN

23 Enabling the up button The up button sends the user to the previous screen We ll be enabling the Up button In the ToDoFragment, the up button will navigate the user back to the list fragment.

24 Enabling the up button We can enable the up button, by specifying the parent element on the item in the Manifest. Here we are saying, if you re in the pager activity, and you press up, then go back to the list

25 The up Button working Now it should navigate you to the parent

26 Show/Hide Subtitle

27 Show the subtitle We ll be activating the feature in the ToDoListFragement We ll be responding to the menu item click

28 Adding the subtitle menu item Let s add our second menu item to menu_to_do_list.xml

29 Show the Subtitle

30 Now it should show Click the menu item to show the subtitle clicked show subtitle

31 Toggling the subtitle We also have to make sure to change the menu items title between show and hide First we need to create a boolean to keep track of the visibility

32 Switch flag Each time you click the button you want to switch the flag for visibility

33 Toggle Flag Each time the button is clicked, make the flag toggle Also, make the label toggle Also, show/hide the subtitle

34 Toggle the subtitle

35 Toggling should work

36 Rotation on rotation we want to make sure we keep the state of the subtitle, and don t reset it to not showing. Try rotating right now. The subtitle should go back to its default state each time.

37 Save boolean variable We need to save the state of our boolean variable when we rotate First create a constant for saving

38 Save boolean variable Next, save the boolean variable in the onsavedinstancestate method

39 Updating the subtitle Because we ll be updating the subtitle on rotation and when the menu item is selected we should have a method for it.

40 Update onitemselected Let s now update the onitemselected method to use the udpatesubtitle method

41 updateui now we add the call to updatesubtitle to updateui

42 Updating initial state Last, we need to show the correct string show/hide subtitle when we rotate. We do this in oncreateoptionsmenu

43 All done Now, both your menu items should work as described.

CS371m - Mobile Computing. More UI Navigation, Fragments, and App / Action Bars

CS371m - Mobile Computing. More UI Navigation, Fragments, and App / Action Bars CS371m - Mobile Computing More UI Navigation, Fragments, and App / Action Bars EFFECTIVE ANDROID NAVIGATION 2 Clicker Question Have you heard of the terms Back and Up in the context of Android Navigation?

More information

CS371m - Mobile Computing. More UI Action Bar, Navigation, and Fragments

CS371m - Mobile Computing. More UI Action Bar, Navigation, and Fragments CS371m - Mobile Computing More UI Action Bar, Navigation, and Fragments ACTION BAR 2 Options Menu and Action Bar prior to Android 3.0 / API level 11 Android devices required a dedicated menu button Pressing

More information

CHAPTER 4. Fragments ActionBar Menus

CHAPTER 4. Fragments ActionBar Menus CHAPTER 4 Fragments ActionBar Menus Explore how to build applications that use an ActionBar and Fragments Understand the Fragment lifecycle Learn to configure the ActionBar Implement Fragments with Responsive

More information

CS378 -Mobile Computing. More UI -Part 2

CS378 -Mobile Computing. More UI -Part 2 CS378 -Mobile Computing More UI -Part 2 Special Menus Two special application menus options menu context menu Options menu replaced by action bar (API 11) menu action bar 2 OptionsMenu User presses Menu

More information

Office 2010: New Features Course 01 - The Office 2010 Interface

Office 2010: New Features Course 01 - The Office 2010 Interface Office 2010: New Features Course 01 - The Office 2010 Interface Slide 1 The Excel Ribbon (Home Tab) Slide 2 The Cell Styles Gallery in Excel Slide 3 Live Preview Default Live Preview of the cell style

More information

EMBEDDED SYSTEMS PROGRAMMING UI and Android

EMBEDDED SYSTEMS PROGRAMMING UI and Android EMBEDDED SYSTEMS PROGRAMMING 2016-17 UI and Android STANDARD GESTURES (1/2) UI classes inheriting from View allow to set listeners that respond to basic gestures. Listeners are defined by suitable interfaces.

More information

Quick & Simple Imaging. User Guide

Quick & Simple Imaging. User Guide Quick & Simple Imaging User Guide The Quick & Simple Imaging software package provides the user with a quick and simple way to search and find their documents, then view, print, add notes, or even e- mail

More information

Designing and Implementing Android UIs for Phones and Tablets

Designing and Implementing Android UIs for Phones and Tablets Designing and Implementing Android UIs for Phones and Tablets Matias Duarte Rich Fulcher Roman Nurik Adam Powell Christian Robertson #io2011 #Android 2 Ask questions Give feedback http://goo.gl/mod/zdyr

More information

Getting Started Guide

Getting Started Guide UX-App Getting Started Guide Contents Keyboard Shortcuts... 2 Basic Shortcuts... 2 Component Manipulation... 2 Working with groups... 3 Grid Control... 3 Context Menu... 4 User Interface... 5 Managing

More information

Admin console design changes

Admin console design changes Admin console design changes New icons and navigation for the toolbar Settings open in card view Managing your users Managing user accounts inline Managing multiple users Filtering your organization units

More information

CS 4518 Mobile and Ubiquitous Computing Lecture 5: Rotating Device, Saving Data, Intents and Fragments Emmanuel Agu

CS 4518 Mobile and Ubiquitous Computing Lecture 5: Rotating Device, Saving Data, Intents and Fragments Emmanuel Agu CS 4518 Mobile and Ubiquitous Computing Lecture 5: Rotating Device, Saving Data, Intents and Fragments Emmanuel Agu Administrivia Moved back deadlines for projects 2, 3 and final project See updated schedule

More information

Topics of Discussion

Topics of Discussion Reference CPET 565 Mobile Computing Systems CPET/ITC 499 Mobile Computing Fragments, ActionBar and Menus Part 1 of 5 Android Programming Concepts, by Trish Cornez and Richard Cornez, pubslihed by Jones

More information

CE881: Mobile & Social Application Programming

CE881: Mobile & Social Application Programming CE881: Mobile & Social Application Programming, s, s and s Jialin Liu Senior Research Officer Univerisity of Essex 6 Feb 2017 Recall of lecture 3 and lab 3 :) Please download Kahoot or open a bowser and

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

PM4 + Partners Knowledge Articles

PM4 + Partners Knowledge Articles PM4 + Partners Knowledge Articles Customizing your PM4+ user experience r 1 November 30, 2108 PM4+ Partners Workspace - customize your experience Page 2 Contents Customizing Your Workspace... 1 Customizing

More information

CE881: Mobile & Social Application Programming

CE881: Mobile & Social Application Programming CE881: Mobile & Social Application Programming Fragments and Jialin Liu Senior Research Officer Univerisity of Essex 13 Feb 2017 Today s App : Pocket (1/3) Today s App : Pocket (2/3) Today s App : Pocket

More information

Action Bar. Action bar: Top navigation bar at each screen The action bar is split into four different functional areas that apply to most apps.

Action Bar. Action bar: Top navigation bar at each screen The action bar is split into four different functional areas that apply to most apps. 1 Action Bar Action bar: Top navigation bar at each screen The action bar is split into four different functional areas that apply to most apps. 1) App Icon 3) Action Buttons 2)View Control 4) Action Overflows

More information

Reviewing Hidden Content during Native Review

Reviewing Hidden Content during Native Review Reviewing Hidden Content during Native Review Introduction When conducting a native file review it is important to note that certain files can have hidden content. These are features of certain software

More information

Microsoft Office Outlook 2007: Basic Course 01 - Getting Started

Microsoft Office Outlook 2007: Basic Course 01 - Getting Started Microsoft Office Outlook 2007: Basic Course 01 - Getting Started Slide 1 Getting Started Course objectives Identify the components of the Outlook environment and use Outlook panes and folders Use Outlook

More information

CS 528 Mobile and Ubiquitous Computing Lecture 4a: Fragments, Camera Emmanuel Agu

CS 528 Mobile and Ubiquitous Computing Lecture 4a: Fragments, Camera Emmanuel Agu CS 528 Mobile and Ubiquitous Computing Lecture 4a: Fragments, Camera Emmanuel Agu Fragments Recall: Fragments Sub-components of an Activity (screen) An activity can contain multiple fragments, organized

More information

CS 528 Mobile and Ubiquitous Computing Lecture 3b: Android Activity Lifecycle and Intents Emmanuel Agu

CS 528 Mobile and Ubiquitous Computing Lecture 3b: Android Activity Lifecycle and Intents Emmanuel Agu CS 528 Mobile and Ubiquitous Computing Lecture 3b: Android Activity Lifecycle and Intents Emmanuel Agu Android Activity LifeCycle Starting Activities Android applications don't start with a call to main(string[])

More information

Introduction To JAVA Programming Language

Introduction To JAVA Programming Language Introduction To JAVA Programming Language JAVA is a programming language which is used in Android App Development. It is class based and object oriented programming whose syntax is influenced by C++. The

More information

Creating/Updating Your Webpage

Creating/Updating Your Webpage Creating/Updating Your Webpage Getting Started: 1. Go to the website provided previously. 2. Log in with your username & password. 3. Click on your school name, then click on Content Management. 4. Find

More information

Microsoft Power Point Lab Manual

Microsoft Power Point Lab Manual Microsoft Power Point Lab Manual Table of Contents The PowerPoint Window PowerPoint is a presentation software package. With PowerPoint, you can easily create slide shows. The Microsoft Office Button The

More information

You will follow these steps: A. Verify that a student account exists. B. Create a classroom to hold lecture slides.

You will follow these steps: A. Verify that a student account exists. B. Create a classroom to hold lecture slides. In this tutorial, you ll use Biolucida to: Create a virtual lecture Share the lecture with students You will follow these steps: A. Verify that a student account exists. B. Create a classroom to hold lecture

More information

Power Point. Created with the Freeware Edition of HelpNDoc: Single source CHM, PDF, DOC and HTML Help creation

Power Point. Created with the Freeware Edition of HelpNDoc: Single source CHM, PDF, DOC and HTML Help creation Power Point Introduction PowerPoint is a presentation software package. With PowerPoint, you can easily create slide shows. Trainers and other presenters use slide shows to illustrate their presentations.

More information

e-snaps Online Training Navigation Tutorial

e-snaps Online Training Navigation Tutorial e-snaps Online Training Navigation Tutorial e-snaps Online Training Navigation Tutorial Topic Table of Contents Page Orientation to the Online Training...1 Home tab...1 Reference Room tab...2 Administration

More information

BoardBookit for ipad Quick Start Guide

BoardBookit for ipad Quick Start Guide BoardBookit for ipad Quick Start Guide Welcome to BoardBookit! BoardBookit for ipad allows you to easily access meetings, board books and other board related materials from the BoardBookit app on your

More information

Viewing and Filtering the Calendar Scheduling Grid in Astra

Viewing and Filtering the Calendar Scheduling Grid in Astra Viewing and Filtering the Calendar Scheduling Grid in Astra Astra Home screen. Astra will default to Guest access which can view all general use lecture and conference rooms. Click on the Calendar tab.

More information

Navigating Viewpoint V6 Working with Grids

Navigating Viewpoint V6 Working with Grids Navigating Viewpoint V6 Working with Grids Table of Contents About this Course 3 Introduction to Grids 4 Hiding Grid Columns 4 Column Widths 5 Column Order 6 Show All Type Columns 7 Filter Bar 8 Grouping

More information

How to use the Acrobat interface and basic navigation

How to use the Acrobat interface and basic navigation How to use the Acrobat interface and basic navigation The work area (Figure 1) includes a document pane that displays Adobe PDF documents and a navigation pane (on the left) that helps you browse through

More information

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer Learning Targets: Students will be introduced to industry recognized game development software Students will learn how to navigate within the software Students will learn the basics on how to use Construct

More information

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9 TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 DEFINITIONS... 3 WHY WOULD YOU USE THIS?... 3 STEP BY STEP... 3 USING WORD S TOOLBARS... 5 DEFINITIONS... 5 WHY WOULD

More information

Lesson 5: Review and Deliver Presentations Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO

Lesson 5: Review and Deliver Presentations Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Lesson 5: Review and Deliver Presentations Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Set up presentations for delivery. Preview and print presentations. Prepare speaker notes and

More information

Mobile Computing Practice # 2a Android Applications - Interface

Mobile Computing Practice # 2a Android Applications - Interface Mobile Computing Practice # 2a Android Applications - Interface 1. Create an Android Lunch Places List application that allows the user to take note of restaurant characteristics like its name, address

More information

You ve been told lies about Fragments.

You ve been told lies about Fragments. You ve been told lies about Fragments. Mateusz Herych Android Tech Lead @ IG Google Developer Expert on Android GDG Kraków co-organizer Father of twins @mherych / github.com/partition You ve been told

More information

By: Ms. Fatima Shannag Ms. Essra Al-Mousa. Edited by: Khawlah Almutlaq

By: Ms. Fatima Shannag Ms. Essra Al-Mousa. Edited by: Khawlah Almutlaq By: Ms. Fatima Shannag Ms. Essra Al-Mousa 1 PowerPoint web app PowerPoint Web App is a limited version of PowerPoint, enabling you to display information through slide shows A PowerPoint presentation is

More information

XPress 2.3 Annotation

XPress 2.3 Annotation XPress 2.3 Annotation XPress is our popular desktop annotation and white boarding application. Starting with XPress version 2.2 you can create XPress documents using our Mac or Windows version and then

More information

Material Design Guidelines

Material Design Guidelines Design for Android Material Design Guidelines Layout Style Anima7on Components Pa;erns Usability Slides based on Android Design h;ps://developer.android.com/design/ Layout Guided by print-based elements:

More information

Word 2016: Using Section Breaks

Word 2016: Using Section Breaks Word 2016: Using Section Breaks Section formatting allows you to apply different page layout settings within the same document. For example, you can change the following formats for each section: Margins

More information

Getting started in Outlook Web App for Office 365

Getting started in Outlook Web App for Office 365 Getting started in Outlook Web App for Office 365 Learn about Office 365 for business basics like mail, calendar, and contacts by using Outlook Web App with your web browser. This document walks you through

More information

Lenovo TAB A User Guide V1.0. Please read the safety precautions and important notes in the supplied manual before use.

Lenovo TAB A User Guide V1.0. Please read the safety precautions and important notes in the supplied manual before use. Lenovo TAB A10-70 User Guide V1.0 Please read the safety precautions and important notes in the supplied manual before use. Chapter 01 Lenovo TAB A10-70 Overview 1-1 Appearance 1-2 Buttons 1-3 Turning

More information

Mobile Application Development Android

Mobile Application Development Android Mobile Application Development Android Lecture 2 MTAT.03.262 Satish Srirama satish.srirama@ut.ee Android Lecture 1 -recap What is Android How to develop Android applications Run & debug the applications

More information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information Tutorial A database is a computerized record keeping system used to collect, store, analyze and report electronic information for a variety of purposes. Microsoft Access is a database. There are three

More information

Android Programming Lecture 2 9/7/2011

Android Programming Lecture 2 9/7/2011 Android Programming Lecture 2 9/7/2011 Creating a first app 1. Create a new Android project (a collection of source code and resources for the app) from the Eclipse file menu 2. Choose a project name (can

More information

ACTIVITY, FRAGMENT, NAVIGATION. Roberto Beraldi

ACTIVITY, FRAGMENT, NAVIGATION. Roberto Beraldi ACTIVITY, FRAGMENT, NAVIGATION Roberto Beraldi Introduction An application is composed of at least one Activity GUI It is a software component that stays behind a GUI (screen) Activity It runs inside the

More information

3D Anatomy for Resistance Training: new user-interface

3D Anatomy for Resistance Training: new user-interface 3D Anatomy for Resistance Training: new user-interface A brief guide to help orientate you to our new interface. BROWSING Whilst the core functionality of the products remains the same, all the browsing

More information

MS Word Professional Document Alignment

MS Word Professional Document Alignment MS Word Professional Document Alignment Table of Contents CHARACTER VS. PARAGRAPH FORMATTING...5 Character formatting...5 Paragraph Formatting...5 USING SHOW/HIDE TO REVEAL NON-PRINTING CHARACTERS...5

More information

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button PROCEDURES LESSON 1: CREATING WD DOCUMENTS WITH HEADERS AND FOOTERS Starting Word 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Word 2010 1 Click

More information

Getting Started with. Microsoft Office 2010

Getting Started with. Microsoft Office 2010 Getting Started with Microsoft Office 2010 Microsoft Office 2010 Objectives Explore the programs in Microsoft Office Start programs and switch between them Explore common window elements Minimize, maximize,

More information

ICS Tutorials: Basic Operations

ICS Tutorials: Basic Operations ICS Tutorials: Basic Operations This tutorial introduces the basic components of Builder Xcessory. For more detailed information, see the Builder Xcessory Reference Manual. This book is directly accessible

More information

BOM (Bill of Material) Management. Updated as of 4/22/2016

BOM (Bill of Material) Management. Updated as of 4/22/2016 BOM (Bill of Material) Management Updated as of 4/22/2016 BOM Management Table of Contents Table of Contents 1. Overview 2. Preparing to Manage your EBOM 3. Structuring an EBOM 4. Creating a Precise EBOM

More information

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3 Quick Start Guide - Contents Opening Word... 1 Locating Big Lottery Fund Templates... 2 The Word 2013 Screen... 3 Things You Might Be Looking For... 4 What s New On The Ribbon... 5 The Quick Access Toolbar...

More information

Inserting Typed Comments Applies to Microsoft Word 2007

Inserting Typed Comments Applies to Microsoft Word 2007 Inserting Typed Comments You can insert a comment 1 inside balloons 2 that appear in the document margins. Type a comment 1. Select the text or item that you want to comment on, or click at the end of

More information

CHEMICAL SAFETY EMS SOFTWARE. Accumulation Inventory

CHEMICAL SAFETY EMS SOFTWARE. Accumulation Inventory CHEMICAL SAFETY EMS SOFTWARE Accumulation Inventory The Accumulation Inventory Database is used to track waste materials stored in specially designated Accumulation Areas. The total quantity of waste currently

More information

Budget Entry Documents Supporting Attachments Work Instructions

Budget Entry Documents Supporting Attachments Work Instructions Budget Entry Documents Supporting Attachments Work Instructions 1 Work with Attachments in the FMBB, FMEDD, or FMEDDW Transactions 1.1 Select or enter the t code FMBB, complete the required fields, and

More information

Windows 8.1 User Guide for ANU Staff

Windows 8.1 User Guide for ANU Staff Windows 8.1 User Guide for ANU Staff This guide has been created to assist with basic tasks and navigating Windows 8.1. Further tips for using Windows 8.1 can be found on the IT Services website, or by

More information

Compare 9.5. Getting started guide

Compare 9.5. Getting started guide Compare 9.5 Getting started guide Hello and welcome to Compare 9.5 We re experts in document collaboration, and we have a simple concept with a simple goal to help you work on documents with other people

More information

Space Details. Available Pages

Space Details. Available Pages Space Details Key: confhelp Name: Confluence Help Description: Creator (Creation Date): ljparkhi (Aug 14, 2008) Last Modifier (Mod. Date): ljparkhi (Aug 14, 2008) Available Pages Working with Pages Document

More information

Using Online Help. About the built-in help features Using Help Using the How To window Using other assistance features

Using Online Help. About the built-in help features Using Help Using the How To window Using other assistance features Using Online Help About the built-in help features Using Help Using the How To window Using other assistance features About the built-in help features Adobe Reader 6.0 offers many built-in features to

More information

Quick Start Guide for Lotus Notes 8.5.1

Quick Start Guide for Lotus Notes 8.5.1 Quick Start Guide for Lotus Notes 8.5.1 ELEMENTS OF LOTUS NOTES... 2 SOME NEW FEATURES:... 2 HOME PAGE... 3 Customize the Home page... 4 SET USER PREFERENCES... 4 Personalizing Your E-mail... 5 Personalizing

More information

1 Introduction to MARS

1 Introduction to MARS 1 Introduction to MARS 1.1 Objectives After completing this lab, you will: Get familiar with the MARS simulator Learn how to assemble, run, and debug a MIPS program 1.2 The MARS Simulator MARS, the MIPS

More information

SmartArt Office 2007

SmartArt Office 2007 SmartArt Office 2007 This is not an official training handout of the, Davis School District SmartArt... 2 Inserting SmartArt... 2 Entering the Text... 2 Adding a Shape... 2 Deleting a Shape... 2 Adding

More information

WPI Project Center WordPress Manual For Editors

WPI Project Center WordPress Manual For Editors WPI Project Center WordPress Manual For Editors April 17, 2015 Table of Contents Who should use this manual... 3 Signing into WordPress... 3 The WordPress Dashboard and Left-Hand Navigation Menu... 4 Adding

More information

Getting Help in Microsoft Office

Getting Help in Microsoft Office LESSON 3 Getting Help in Microsoft Office In this lesson, you learn how to access and use the Help system in Microsoft Office. HELP: WHAT S AVAILABLE? Microsoft Office supplies a Help system that makes

More information

Using Help Contents Index Back 1

Using Help Contents Index Back 1 Using Online Help Using Help Contents Index Back 1 Using Online Help About the built-in help features Adobe Reader 6.0 offers many built-in features to assist you while you work, including the Help window

More information

ALES Wordpress Editor documentation ALES Research websites

ALES Wordpress Editor documentation ALES Research websites ALES Wordpress Editor documentation ALES Research websites Contents Login... 2 Website Dashboard... 3 Editing menu order or structure... 4 Add a new page... 6 Move a page... 6 Select a page to edit...

More information

Action Bar. (c) 2010 Haim Michael. All Rights Reserv ed.

Action Bar. (c) 2010 Haim Michael. All Rights Reserv ed. Action Bar Introduction The Action Bar is a widget that is shown on top of the screen. It includes the application logo on its left side together with items available from the options menu on the right.

More information

If there is not a shortcut icon on the desktop: Click on the Start menu > All Apps> and select Word 2016 from the list.

If there is not a shortcut icon on the desktop: Click on the Start menu > All Apps> and select Word 2016 from the list. MICROSOFT WORD PART 1 Office 2016 Opening Word Double click the Word icon on the desktop. -OR- If there is not a shortcut icon on the desktop: Click on the Start menu > All Apps> and select Word 2016 from

More information

MS PowerPoint Useful Features. Choose start options. Change Office backgrounds and colours

MS PowerPoint Useful Features. Choose start options. Change Office backgrounds and colours MS PowerPoint Useful Features Note: Depending on your installation of MS Office, the screens you see on your PC may vary slightly from those shown on this fact sheet. Choose start options The first time

More information

Module 5: Triggers and Hotspots

Module 5: Triggers and Hotspots Skills and Drills Learning Module 5: Triggers and Hotspots In This Module You Will Learn About: Triggers, page 88 Hotspots, page 103 And You Will Learn To: Delete Default Triggers, page 88 Add a Trigger

More information

PowerPoint 2010 Level 1 Computer Training Solutions Student Guide Version Revision Date Course Length

PowerPoint 2010 Level 1 Computer Training Solutions Student Guide Version Revision Date Course Length Level 1 Computer Training Solutions Version 1.2 Revision Date Course Length 2012-Feb-16 6 hours Table of Contents Quick Reference... 3 Frequently Used Commands... 3 Manitoba ehealth Learning Management

More information

Introduction to iauditor +

Introduction to iauditor + Introduction to iauditor + Login & Setup Login Page When you first launch the iauditor app you will be asked for a username and Password. Tap in the first cell to enter your username. Your username will

More information

CS 403X Mobile and Ubiquitous Computing Lecture 5: Web Services, Broadcast Receivers, Tracking Location, SQLite Databases Emmanuel Agu

CS 403X Mobile and Ubiquitous Computing Lecture 5: Web Services, Broadcast Receivers, Tracking Location, SQLite Databases Emmanuel Agu CS 403X Mobile and Ubiquitous Computing Lecture 5: Web Services, Broadcast Receivers, Tracking Location, SQLite Databases Emmanuel Agu Web Services What are Web Services? Means to call a remote method

More information

Web Viewer Guide. HiPER LOOK Version Copyright 2016 PIXIA Corp. All Rights Reserved.

Web Viewer Guide. HiPER LOOK Version Copyright 2016 PIXIA Corp. All Rights Reserved. Web Viewer Guide 2016 HiPER LOOK Version 1.4.16.0 Copyright 2016 PIXIA Corp. All Rights Reserved. Table of Contents 1 System Requirements... 5 1.1 Prerequisites... 5 1.2 Web Browser... 5 2 HiPER LOOK Web

More information

Salesforce Classic User Guide for Android

Salesforce Classic User Guide for Android Salesforce Classic User Guide for Android Version 36.0, Spring 16 @salesforcedocs Last updated: April 27, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

INTERMEDIATE WORD. Class Objective:

INTERMEDIATE WORD. Class Objective: INTERMEDIATE WORD Class Objective: This class will familiarize you with using Microsoft Word. By the end of this session, you will know how to use: Indents and Ruler Line Spacing and Page Orientation Margins

More information

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page Configuring the Control UI Home Page HCA contains two different user interfaces: One interface called the Development UI - where all design elements and tools are available and you can make changes, and

More information

Mastering SmartList & Navigation Lists in Dynamics GP

Mastering SmartList & Navigation Lists in Dynamics GP Add SmartList to Your Toolbar Make a button in your toolbar: Right-click: on the Toolbar Check: The Standard Toolbar Right-click again Choose: Customize Edit: The Standard Toolbar Ensure that SmartList

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information

Promethean ActivInspire

Promethean ActivInspire New Features What s New? The newest version of Promethean software, ActivInspire, can be used only on an Intel based Mac, such as a Macbook. It will not run on an ibook. The flipchart is already set to

More information

Activities and Fragments

Activities and Fragments Activities and Fragments 21 November 2017 Lecture 5 21 Nov 2017 SE 435: Development in the Android Environment 1 Topics for Today Activities UI Design and handlers Fragments Source: developer.android.com

More information

Victaulic Tools for Revit

Victaulic Tools for Revit Victaulic Tools for Revit User Manual Revit 2016, 2017, 2018 Table of Contents Introduction Section 01 Licensing Page 3 Section 02 Pipe Tools (Pipe / Duct Splitting) Page 4 Section 03 Pipe Tools (Pipe

More information

Urology, new user-interface

Urology, new user-interface Urology, new user-interface A brief guide to help orientate you to our new interface. BROWSING Whilst the core functionality of the products remains the same, all the browsing functionality has been moved

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

GeoGebra 4. Introduction and Point Plotting

GeoGebra 4. Introduction and Point Plotting GeoGebra 4 Introduction and Point Plotting GeoGebra basics Setting up the Interface Steps required: If not visible then show the Input Bar, through the View option on the Toolbar. Make sure that the Algebra

More information

Microsoft Lync 2013 Quick-Start Guide. ThinkTel Communications Professional Services Last Updated: June 18, 2013

Microsoft Lync 2013 Quick-Start Guide. ThinkTel Communications Professional Services Last Updated: June 18, 2013 Microsoft Lync 2013 Quick-Start Guide ThinkTel Communications Professional Services Last Updated: June 18, 2013 Instant Messaging & Presence Accept an IM request Click anywhere on the picture display area

More information

VA DAP App Android Users Guide

VA DAP App Android Users Guide VA DAP App Android Users Guide Table of Contents Getting Started with the VA DAP App... 1 Installing the VA DAP App... 1 Logging into the App and Opening Components... 1 Logging out of the VA DAP App...

More information

Astra Scheduling Grids

Astra Scheduling Grids Astra Scheduling Grids To access the grids, click on the Scheduling Grids option from the Calendars tab. A default grid will be displayed as defined by the calendar permission within your role. Choosing

More information

Release Notes. TimeMap, Version 6.0. Enhancements Current Issues

Release Notes. TimeMap, Version 6.0. Enhancements Current Issues Release Notes TimeMap, Version 6.0 Enhancements Current Issues TimeMap Release Notes No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including

More information

Introduction to PowerPoint 2007

Introduction to PowerPoint 2007 Introduction to PowerPoint 2007 PowerPoint is one of the programs included in the Microsoft Office suite. It s used to create presentations, also called slide shows, that are typically displayed via a

More information

ProPresenter-Scoreboard. A Renewed Vision Product

ProPresenter-Scoreboard. A Renewed Vision Product ProPresenter-Scoreboard A Renewed Vision Product Copyright 2005-2016 Renewed Vision, Inc. All rights reserved. ProPresenter-Scoreboard is owned by Renewed Vision, Inc. 6505 Shiloh Road Suite 200 Alpharetta,

More information

ConstraintLayouts in Android

ConstraintLayouts in Android B ConstraintLayouts in Android Constrained Layouts are a new addition to Android. These layouts are similar to Relative Layouts, in that all widgets are positioned with respect to other UI elements. However,

More information

Introduction. The topics included in this guide are:

Introduction. The topics included in this guide are: Introduction Caorda Content is a powerful content management tool that allows you to update your web site through a standard Internet web browser. The purpose of this guide is to introduce you to Caorda

More information

ELET4133: Embedded Systems. Topic 3 Eclipse Tour & Building a First App

ELET4133: Embedded Systems. Topic 3 Eclipse Tour & Building a First App ELET4133: Embedded Systems Topic 3 Eclipse Tour & Building a First App Agenda In this class we will look at the Eclipse IDE We will examine it s various parts when working on an application We will load

More information

Mobile 3.1 ios & Android v2

Mobile 3.1 ios & Android v2 Mobile 3.1 ios & Android v2 Bookshelf Mobile 3.1 ios and Android v2 1 Introduction VitalSource Bookshelf lets you download and access books on any of the following devices: Android smartphone or tablet

More information

Produced by. Mobile Application Development. David Drohan Department of Computing & Mathematics Waterford Institute of Technology

Produced by. Mobile Application Development. David Drohan Department of Computing & Mathematics Waterford Institute of Technology Mobile Application Development Produced by David Drohan (ddrohan@wit.ie) Department of Computing & Mathematics Waterford Institute of Technology http://www.wit.ie User Interface Design" & Development -

More information

11.1 Create Speaker Notes Print a Presentation Package a Presentation PowerPoint Tips... 44

11.1 Create Speaker Notes Print a Presentation Package a Presentation PowerPoint Tips... 44 Contents 1 Getting Started... 1 1.1 Presentations... 1 1.2 Microsoft Office Button... 1 1.3 Ribbon... 2 1.4 Mini Toolbar... 2 1.5 Navigation... 3 1.6 Slide Views... 4 2 Customize PowerPoint... 5 2.1 Popular...

More information

Teamcenter Mobility Product decisions, anywhere, anytime. Features. Siemens AG All Rights Reserved.

Teamcenter Mobility Product decisions, anywhere, anytime. Features. Siemens AG All Rights Reserved. Teamcenter Mobility Product decisions, anywhere, anytime Features Settings App settings are located in the ipad Settings application. Page 2 Settings Toggles in the Settings pane allow you to hide tabs

More information

Contents I - Navigating is easy p. 2. III - Controls p. 7. II - Using Whiteboard Active pages: making a new page, saving, opening, printing p.

Contents I - Navigating is easy p. 2. III - Controls p. 7. II - Using Whiteboard Active pages: making a new page, saving, opening, printing p. Tutorial Getting started with Whiteboard Active Whiteboard Active range is simple to use. It has been designed to be used on an interactive whiteboard as a whole class resource. You can also use it on

More information