Navigation Patterns Using Fragments

Slides:



Advertisements
Similar presentations
Course Design – This collection of ATEC courses, designed by Aaron Nelson demonstrate a basic style of navigation that is presented consistently throughout.
Advertisements

What does a parent see? txConnect. txConnect – Home Page and Help.
TO A MEMORY STICK How to Save Lesson 1 – November 13, 2013 – Michelle Lowe.
BEGINNING WITH PINPOINT Logging in and Accessing Curriculum.
BEGINNING WITH PINPOINT Logging in and Accessing UbD Resources.
Using Calendars. This tutorial will guide you through the calendar function of the zzusis portal.
Introduction To Smart Devices: iPhones iPads
NFD UI Design For Android Devices. Layout options Anchor navigation and actions. Its position at the top of a screen makes it ideal for presenting navigation.
1 CGS1060 Mobile UIs Copyright 2012 by Janson Industries.
Training Course: Calendar. Agenda Overview of the Views of the Calendar Selecting different Users (security access required) Changing the Date of the.
Setting up a Nexus tablet for development on Windows 1.
Android Boot Camp for Developers Using Java, Comprehensive: A Guide to Creating Your First Android Apps Chapter 9: Customize! Navigating with a Master/Detail.
TO YOUR H:DRIVE PLD8865(\\ins-fs1\home)(H:) How to Save Lesson 2 – November 13, 2013 – Michelle Lowe.
Contact Manager / Client Connect. Contacts vs. Prospects? LPS Real Estate Group2 Formerly in Paragon 4, Contacts where either a general contact or considered.
Accessing Your “How To” Series – W&J Office of Communications.
Review of Applications By Phoebe Stewart. Introduction I shall be talking about the features, strengths and weaknesses of two different apps, a learning.
Powerful, Personal, Portable.  Virtual Library with 24/7 Access  Browse Library Shelves – Virtually  Title Peek – Preview the material – Virtually.
Upon entering the site a “pre-loader” will cache the contents of the site on the user’s computer. Visually, a “Zen Circle” brush stroke will animate to.
1 Mezzanine Ware (Pty) Ltd © 2014 Installing\Uninstalling the Mezzanine Helium Android application.
Support.ebsco.com The EBSCOhost Android Application Tutorial.
The tab system has moved to the left side of your Admin Area and will always display for easy navigation. 1.
MAGNET TUTORIAL MEET SCIENCE IPAD APP. MEET SCIENCE: MAGNETISM AND ELECTRICTY On your Ipad go to the Meet Science App.
Schoolwires Calendar App. Calendar Overview Calendar app uses the same color scheme and fonts as the rest of the IRHS site.
Overview: Ethics 450 Congrats on your new app! This application will provide FDCCI participants with an easy way to track their data center consolidation.
ION Structure Learning Exchange Campus Management Solutions Communities – Vertical approach- E.g. House, PTA, Bus, Mind spark communities Courses – Horizontal.
© 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.
Blaise Senior UX Designer at AllofUs Friend of foxes Android UI The Basics.
Downloading the App 1 Go to the right store. Access the App Store on iOS devices, the Play Store on Android, and for a.
Precision Spine Inc. Mobile Device Setup. Android Devices.
Android UI Patterns by Peter Pascale, Vladan Pulec.
Introducing ‘Show my Homework’. What is it? This is a virtual homework tool which your teachers will be using to set most of your future homework. It.
UX/UI changes for Windows 10 apps
Use the new Armed Forces Pension ‘App’ TODAY!
How to Use the BCSD Guest Network on an Android Phone
Information Manager Reports
Making the Most of our School App
Microsoft Access 2013 Bobby Wan.
Tutorial Using the App help.ebsco.com.
Android: The Basics Part 1 Allyson Coan Adult Services Librarian
Click on the HOME button to return to this page at any time
Introduction to smartphone/tablet
Your Technology Classroom
The Future of Online Storage
Android Screen Mirroring to TV with few Steps
Home page of My Experience
MY AGED CARE - Changes to the PROVIDER PORTAL USER INTERFACE
MY AGED CARE - Changes to the PROVIDER PORTAL USER INTERFACE
Images and Visual Polish
User Interface overview
Tutorial Using the App help.ebsco.com.
EPM New Reports: Accessing
Making Your Laptop Work for You
OnCourse Connect is simple to use and can be accessed from any online computer, smartphone or tablet device. This secure website will allow you real-time.
Sharon Trerise & Kara Patten
Resource calendar.
Clemson For iOS Devices and Wi-Fi Setup
It’s KOBO time!.
Click to edit title TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing.
Word Lesson 6.
Development Directory 1 Page Guide
EVENT TITLE Time, Date Location
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
EVENT TITLE Time, Date Location
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
How to connect iPad to AirServer
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
Click to edit title TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing.
Hampshire SLS eBooks How to access Wheelers ePlatform on a mobile device to read online and offline using a tablet or smartphone.
Presentation transcript:

Navigation Patterns Using Fragments Indra Azimi, S.T., M.T. D3 Teknik Informatika, Telkom University

Navigation Pattern Navigation guides users between different parts of your app. Keep in mind that your app will need to adapt to devices with a variety of screen sizes. This is known as responsive design. Master Detail Navigation Drawer Swipeable Tabs Calendar-based https://material.io/guidelines/patterns/navigation.html

Master Detail (smartphone) The “master detail layout” consists of a master list of data. When you click one of those items of data, a detailed view of that item appears.

Master Detail (tablet) When there is more screen real estate available, then we can view the master list of data alongside the detailed view of an item, at the same time.

Navigation Drawer If an app has many screens that are “siblings” to each other, then the different screens can be listed in a “drawer” that pulls out from the left side of the screen.

Swipeable Tabs You can swipe horizontally left and right between different screens, or you can tap one of the tabs across the top of the screen.

Calendar-based Has a scrolling agenda view, but you can jump to specific days by using the calendar month view. Or you can view different lengths of time like the week view.

Up Button The “Up” button ALWAYS leads you to the parent activity. Back Button The “Back” button can lead you to the parent activity, or the home screen, or to another app, depending on how you arrived at the current screen.

Miwok App 2.0 What to do? Create a new project: Tabbed Activity. Refactor the 4 activities into the fragments. Modify the MainActivity so it contains 4 pages, where each page is a Fragment.

Intro to Fragments

Activity life cycle

fragment life cycle

Refactor activitY into fragment

Modify the MainActivity

Visual Polish

Referensi Lesson 5: Navigation Patterns Using Fragments Android Basics: Multi-screen Apps https://www.udacity.com/course/ud839