Depreciation App: Demo of tabs

Slides:



Advertisements
Similar presentations
Author 1 | Author 2 | Author 3 (edit this list on View > Master > Slide Master. In Office 2007 use View > Slide Master) Go to View > Master > Slide Master.
Advertisements

Health and Safety Services Version 2 The following presentation is intended to show existing version 1 Sentinel users how to use version 2. Many of the.
Google Apps Access Google Apps from the Parkland Intranet Page:
Using Eclipse. Getting Started There are three ways to create a Java project: 1:Select File > New > Project, 2 Select the arrow of the button in the upper.
Microsoft®Office Outlook Web Access Training: Getting Started
How to post to Wordpress Chruton Budd. Click on the Login link.
Web Content Management System Website Maintenance Demonstration Introduction to Macromedia Contribute Jamie Uprichard.
 Found on Home Tab  Layout Option under Slides › Title › Title and Content › Section Header › 2 content › Comparison › Title Only › Blank, etc.
Template Instructions 1)You may want to add images other than the ones provided to your presentation. To do so, simply right click the current image and.
Click to Add Title 0 Click to Add Subtitle To replace this photo with one of your own, go to the master page, delete this image, insert your own image,
Professor Joe Perret Pierce College Transition to Microsoft Office 2007.
4 Copyright © 2004, Oracle. All rights reserved. Creating a Basic Form Module.
1 of 3 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
Android Development (Basics)
Android Application Development 2013 PClassic Chris Murphy 1.
Internet. Internet is Is a Global network Computers connected together all over that world. Grew out of American military.
Introduction to. What is Office 365 Office 365 is the same Office you already know and use every day. Office 365 is powered by “the cloud” which is a.
Create Professional-looking Content Easy to Use Interface Share Documents.
CS378 - Mobile Computing Web - WebView and Web Services.
XP Modifying the Slide Master Click the View tab on the Ribbon, and then, in the Master Views group, click the Slide Master button Click the Slide Master.
Microsoft Outlook 2010 New Features. Improved Interface “The Ribbon”
1 CSC111H Graphical User Interfaces (GUIs) Introduction GUIs in Java Understanding Events A Simple Application The Containment Hierarchy Layout Managers.
ACCESS Part 2. OBJECTIVES  Use the Form Wizard  Create a split form  Use Form Layout View  Add fields to a form  Modify form controls  Create calculations.
LESSON 2 – REVIEW QUESTIONS Casey Polera. GIVEN REVIEW QUESTIONS Q: Explain When you would use the print layout and Read Mode views: A: Print Layout –
Execute Workflow. Home page To execute a workflow navigate to My Workflows Page.
Quick guide on making PowerPoint slides  PowerPoint is a presentation program  A PowerPoint slideshow is a stack of slides being presented one after.
 Whether using paper forms or forms on the web, forms are used for gathering information. User enter information into designated areas, or fields. Forms.
Introduction to Derby. RHS – What is Derby…? Derby is a DBMS –Database –GUI for administration –GUI for data maintenance Best part; integrated.
4 Copyright © 2004, Oracle. All rights reserved. Creating a Basic Form Module.
Version How to Use Packet Tracer MarinaMD.
1 Creating Windows GUIs with Visual Studio. 2 Creating the Project New Project Visual C++ Projects Windows Forms Application Give the Project a Name and.
First Venture into the Android World Chapter 1 Part 2.
Microsoft Office 2010 is the newest version of Microsoft Office, offering features that provide users with better functionality and easier ways to work.
Envision Tutorial Horner APG, LLC July 18, Introduction The Cscape Remote Viewer allows remote interaction with the user interface on Horner OCS.
Lecture 10 Using Interface Builder to create Mac Applications.
Creating a Form. Accessing Docs Log into your USD 465 Google Account Click on the “Documents” link at the top of.
Primenumbers.co.uk This presentation will help you get the most out of this service.
Command Buttons in Access Forms. What are Command Buttons?  Buttons that perform commands (duh)  With proper programming, you can make a button perform.
Fragment Android Club Agenda Fragment Static fragment Dynamic fragment ViewPager.
User Interface Layout Interaction. EventsEvent Handlers/Listeners Interacting with a user.
M STREAM IT running dos C :/ dommand delete D :/ freesize D :/ load D ;/ dagger C :/ toloadtype dag D :/ dag Loading operating win 96 Loading disk.
© 2016 Cengage Learning®. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part. Android Boot Camp.
Customizing Menus and Toolbars CHAPTER 12 Customizing Menus and Toolbars.
Creating Web Pages with Links, Images, and Embedded Style Sheets
Microsoft Visual C# 2010 Fourth Edition Chapter 3 Using GUI Objects and the Visual Studio IDE.
School of Engineering and Information and Communication Technology KIT305/KIT607 Mobile Application Development Android OS –Permissions (cont.), Fragments,
One to two days after he submits his “DRA2+ App Admin Request” online form, DA receives Account Activation from Pearson, with link to self- register.
Cosc 5/4730 Support design library. Support Design library Adds (API 9+) back support to a number of 5.0 lollipop widgets and material design pieces –
Author 1 | Author 2 | Author 3 (edit this list via View > Slide Master) Two spaces should be between the line and the next author’s name Insert your unit.
Android 3: Exploring Apps and the Development Environment
4. Search button should work only if there is a key word.
ICE Integrated Cloud Environment Cloud Scanning and Mobile Printing
Online Texting Tool Created By: Brandi Laney
Command Buttons in Access Forms
This is an example of a short, informative split over two line
How to Fi
First Last Name.
Android Programming Lecture 9
(Includes setup) FAQ ON DOCUMENTS (Includes setup)
Android Studio Hello World
This is an example of a short, informative split over two lines
Title of Your Event Event Date Event Time
Word 2007 Basics TCC July 2011.
Android Developer Fundamentals V2 Lesson 1
How to send messages to students and other SimpleVLE users
BMI Android Application will take weight and height from the users to calculate Body Mass Index (BMI) with the information, whether user is underweight,
Activities and Intents
Review: Applying Computer Basics
Creating and Sending Saved Messages
Custom Form with Spin Button Controls with VBA in Excel In-Class Exercise #12 Objective: Enhance a “standard” DSS interface with a custom “user form”
Presentation transcript:

Depreciation App: Demo of tabs

Choose Tabbed Activity instead of usual Empty Activity

Choose Navigation Style: Action Bar Tabs

So far: moves from tab to tab – has email icon “floating” on each tab

To eliminate the floating button, find it in Layout and delete it

Find the floating button code in MainActivity and delete it as well

And voila – no pink email floating button thing

Right click on layout, choose new Layout resource

Name your new layout resource

For now just add something that will distinguish it from the automatic tab layout fragments

Add new java class: right click one level above MainActivity

Name your class

Add that the class “extends Fragment” and import Fragment I imported the wrong version of Fragment and lost a lot of time

Right click and choose generate

Choose Override methods

Choose onCreateView

Use the inflater and connect to the desired layout you made previously

Go to res/values/strings.xml and change the tab names

Go to MainActivity, the getCount method determines the number of tabs

The tabs in activity_main The tabs in activity_main.xml – but the text of the tabs is controlled by the strings.xml data

Adapt code to send user to your class when first tab is pressed

Result

In Fragment inflate the view but don’t return it right away instead to usual interface code You cannot simply have findViewById() Now it’s myView.findViewById()