Cargando…

Creating dynamic UIs with Android fragments : create engaging apps with fragments to provide a rich user interface that dynamically adapts to the individual characteristics of your customers' tablets and smartphones /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Wilson, Jim (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2016.
Edición:Second edition.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Ii 4500
001 EBSCO_ocn946054947
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 160406s2016 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d TEFOD  |d YDXCP  |d IDEBK  |d OCLCF  |d N$T  |d VT2  |d KSU  |d DEBBG  |d OCLCQ  |d CEF  |d NLE  |d UKMGB  |d AGLDB  |d IGB  |d UKAHL  |d RDF  |d OCLCO  |d OCLCQ  |d QGK 
015 |a GBB6G3491  |2 bnb 
016 7 |a 018010598  |2 Uk 
019 |a 945752083  |a 945783475  |a 1259088500 
020 |a 9781785882760  |q electronic bk. 
020 |a 1785882767  |q electronic bk. 
020 |z 9781785889592 
020 |z 1785889591 
029 1 |a DEBBG  |b BV043969166 
029 1 |a DEBSZ  |b 485796791 
029 1 |a GBVCP  |b 882849255 
029 1 |a AU@  |b 000062539913 
029 1 |a UKMGB  |b 018010598 
035 |a (OCoLC)946054947  |z (OCoLC)945752083  |z (OCoLC)945783475  |z (OCoLC)1259088500 
037 |a 9781785882760  |b Packt Publishing Pvt. Ltd 
050 4 |a QA76.9.U83 
072 7 |a COM  |x 070000  |2 bisacsh 
082 0 4 |a 005.437  |2 23 
049 |a UAMI 
100 1 |a Wilson, Jim,  |e author. 
245 1 0 |a Creating dynamic UIs with Android fragments :  |b create engaging apps with fragments to provide a rich user interface that dynamically adapts to the individual characteristics of your customers' tablets and smartphones /  |c Jim Wilson. 
246 3 |a Creating dynamic user interfaces with Android fragments 
250 |a Second edition. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2016. 
300 |a 1 online resource :  |b illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Community experience distilled 
588 |a Description based on online resource; title from cover page (Safari, viewed April 5, 2016). 
500 |a Includes index. 
588 0 |a Print version record. 
520 8 |a Annotation  |b Create engaging apps with fragments to provide a rich user interface that dynamically adapts to the individual characteristics of your customers' tablets and smartphonesAbout This Book From an eminent author comes a book that will help you create engaging apps that dynamically adapt to individual device characteristics The only book that includes the latest fragment-oriented features and their role in Material design This book provides code-intensive discussions and detailed examples that help you understand better and learn faster.Who This Book Is ForThis book is for developers with a basic understanding of Android programming who would like to improve the appearance and usability of their applications by creating a more interactive user experience and dynamically adaptive UIs; providing better support for tablets and smartphones in a single app; and reducing the complexity of managing app UIs.What You Will Learn Learn the role and capabilities of fragments Use Android Studio's fragment-oriented features Create an app UI that works effectively on smartphones and tablets Manage the creation and life cycle of fragments Dynamically manage fragments using the FragmentTransaction class Learn the application design for communicating between fragments Leverage fragments when implementing applications that take advantage of the latest features of Material DesignIn DetailToday's users expect mobile apps to be dynamic and highly interactive, with rich navigation features. These same apps must look fantastic whether running on a medium-resolution smartphone or high-resolution tablet. Fragments provide the toolset we need to meet these user expectations by enabling us to build our applications out of adaptable components that take advantage of the rich capabilities of each individual device and automatically adapt to their differences.This book looks at the impact fragments have on Android UI design and their role in both simplifying many common UI challenges and in providing best practices for incorporating rich UI behaviors. We look closely at the roll of fragment transactions and how to work with the Android back stack. Leveraging this understanding, we explore several specialized fragment-related classes such as ListFragment and DialogFragment. We then go on to discuss how to implement rich navigation features such as swipe-based screen browsing, and the role of fragments when developing applications that take advantage of the latest aspects of Material Design.You will learn everything you need to provide dynamic, multi-screen UIs within a single activity, and the rich UI features demanded by today's mobile users.Style and approachA fast-paced learning guide that gives a hands-on, code-intensive approach with a focus on real-world applications. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Fragments and UI Modularization; The need for a new approach to UI creation; The broad platform support of fragments; How fragments simplify common Android tasks; The relationship between fragments and activities; Making the shift to fragments; The old thinking -- activity-oriented; Defining the activity appearance; Displaying the activity UI; The new thinking: fragment-oriented; Creating the fragment layout resources; Creating the Fragment class 
505 8 |a Converting an activity to use fragmentsSummary; Chapter 2: Fragments and UI Flexibility; Creating UI flexibility; Dynamic fragment layout selection; Adding an alternate layout resource; Managing fragment layout by screen size; Eliminating redundant layout descriptions; Designing fragments for flexibility; Avoiding tight coupling; Abstracting fragment relationships; Encapsulating fragment operations; Creating a loosely connected relationship between fragments; Fragments protect against the unexpected; Creating the book description activity; Adding functionality to the book description activity 
505 8 |a Making the MainActivity class adaptiveSummary; Chapter 3: Fragment Life Cycle and Specialization; Understanding the fragment life cycle; Understanding fragment setup and display; Avoiding method name confusion; Understanding fragment hide and teardown; Maximizing the available resources; Managing a fragment state; Special-purpose fragment classes; ListFragment; Associating data with the list; Separating data from the display; DialogFragment; Styles; Layout; Displaying DialogFragment; Event handling in DialogFragment; The Dialog identity; Summary; Chapter 4: Working with Fragment Transactions 
505 8 |a Intentional screen managementDynamically managing fragments; Deferred execution of transaction changes; Adding and removing fragments; Supporting the back button; Creating an adaptive application layout; Updating the layout to support dynamic fragments; Adapting to device differences; Dynamically loading a fragment at startup; Transitioning between fragments; Eliminating redundant handling; Creating the fragment on the fly; Managing asynchronous creation; Putting it all together; Summary; Chapter 5: Creating Rich Navigation; A brave new world; Making navigation fun with swipe 
505 8 |a Implementing swipe navigationAdding swipe navigation with Android Studio; Managing the swipe UI behavior; Putting the swipe UI into place; Providing direct navigation to screens; Don't get trapped in the past; Direct navigation for a small number of screens; Direct navigation for four or more screens; Creating a navigation drawer activity with Android Studio; The activity and application screen fragment; The navigation drawer fragment; Summary; Chapter 6: Fragments and Material Design; Creating a rich user experience; Material design; Principles of material design; The role of motion 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
630 0 0 |a Android (Electronic resource) 
630 0 7 |a Android (Electronic resource)  |2 fast  |0 (OCoLC)fst01776064 
650 0 |a User interfaces (Computer systems) 
650 0 |a Application software  |x Development. 
650 2 |a User-Computer Interface 
650 6 |a Interfaces utilisateurs (Informatique) 
650 6 |a Logiciels d'application  |x Développement. 
650 7 |a COMPUTERS  |x User Interfaces.  |2 bisacsh 
650 7 |a Application software  |x Development.  |2 fast  |0 (OCoLC)fst00811707 
650 7 |a User interfaces (Computer systems)  |2 fast  |0 (OCoLC)fst01163191 
776 |z 1-78588-959-1 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1213512  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH30492621 
938 |a YBP Library Services  |b YANK  |n 12908300 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis34312266 
938 |a EBSCOhost  |b EBSC  |n 1213512 
994 |a 92  |b IZTAP