Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Android Design Patterns and Best Practice
Android Design Patterns and Best Practice

Android Design Patterns and Best Practice: Create reliable, robust, and efficient Android apps with industry-standard design patterns

eBook
$35.98 $39.99
Paperback
$48.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Android Design Patterns and Best Practice

Chapter 2. Creational Patterns

In the previous chapter, we took a look at the factory pattern and its associated abstract factory pattern. However, we looked at these patterns in quite a general way and not at how these objects, once created, can be represented and manipulated on an Android device. In other words, the patterns we built could have been applied in many other software environments, and to see how to make them more Android-specific we need to take a look at Android UIs and how they are composed.

In this chapter, we will concentrate on how to represent our products as Android UI components. We will use the card view to display these, and each card will contain a title, an image, some descriptive text, and the ingredient's calorific value, as can be seen in the following screenshot:

Creational Patterns

This will lead us to take an initial look at material design, a powerful and increasingly popular visual design language for creating clean and intuitive UIs. Conceived originally for...

Applying themes

As developers, we want our apps to stand out from the crowd, but we also want to incorporate all the features that Android users are familiar with. One way to do this is by applying a particular color scheme throughout an app. This is most easily done by customizing or creating Android themes

Since API level 21 (Android 5.0), the material theme has been default on Android devices. It is, however, more than just a new look. The material theme also provides as default the touch feedback and transition animations that we associate with material design. As with all Android themes, the material themes are based on Android styles.

An Android style is a set of graphical properties defining the appearance of a particular screen component. Styles allow us to define everything from font size and background color to padding and elevation, and much more. An Android theme is simply a style applied across a whole activity or application. Styles are defined as XML files, and stored in the...

Customizing color and text

The first things we need to consider when applying a theme are colors and text. Material design guidelines recommend selecting these colors from a predefined series of palettes.

Using palettes

The two most significant colors we can edit in a material theme are the primary colors. They are applied directly to the status and app bars and give an app a distinctive look without affecting the uniform feel of the platform as a whole. Both these colors should be selected from the same color palette. There are many such palettes available, and the entire collection can be found at www.google.com/design/spec/style/color.html#color-color-palette.

Whichever palette you decide to use as your primary colors, Google recommend that you use shades with values of 500 and 700:

Using palettes

This does not have to be enforced too strictly, but it usually a good idea to stick close to these values and to always select two shades of the same color.

Tip

The theme editor can be very helpful here; not...

Adding image resources

One of the most interesting challenges that Android offers is the vast number of screen densities and sizes that we have to cater for. This is particularly true when it comes displaying bitmap images, where there are two competing issues that need to be resolved:

  • Low resolution images display very poorly when stretched to fit on large or high resolution screens
  • High quality images use up far more memory than is needed when displayed on smaller, low density screens.

Screen sizes aside, the problem of differing screen densities is mostly solved with the use of density-independent pixels (dp).

Managing screen densities

Dps are an abstract unit of measurement based on a screen displaying 160 dpi. This means that a widget with a width of 320 dp will always be 2'' wide regardless of screen density. When it comes to the actual physical dimensions of a screen, this can be managed with a variety of layout types, libraries, and properties such as weight and gravity, but...

Creating a card view

The card view is one of the most recognizable material design components. It is designed to show several pieces of content that all apply to a single subject. This content is usually a combination of graphics, text, action buttons, and icons, and cards are a great way to present a selection of choices in a uniform way. This makes it a good choice for displaying our sandwich ingredients and related information such as price or calorific value. We will use the factory pattern from the previous chapter to do this, but before we see what code needs changing, let's take a look at how we implement the card view in the first place.

Understanding card view properties

If your minimum target SDK is 21 or greater, then the CardView widget will be included as standard. Otherwise, you will need to include the cardview support library. This is easily added in the build.gradle file by including the following highlighted line:

dependencies { 
    compile fileTree(dir: 'libs...

Applying themes


As developers, we want our apps to stand out from the crowd, but we also want to incorporate all the features that Android users are familiar with. One way to do this is by applying a particular color scheme throughout an app. This is most easily done by customizing or creating Android themes

Since API level 21 (Android 5.0), the material theme has been default on Android devices. It is, however, more than just a new look. The material theme also provides as default the touch feedback and transition animations that we associate with material design. As with all Android themes, the material themes are based on Android styles.

An Android style is a set of graphical properties defining the appearance of a particular screen component. Styles allow us to define everything from font size and background color to padding and elevation, and much more. An Android theme is simply a style applied across a whole activity or application. Styles are defined as XML files, and stored in the...

Customizing color and text


The first things we need to consider when applying a theme are colors and text. Material design guidelines recommend selecting these colors from a predefined series of palettes.

Using palettes

The two most significant colors we can edit in a material theme are the primary colors. They are applied directly to the status and app bars and give an app a distinctive look without affecting the uniform feel of the platform as a whole. Both these colors should be selected from the same color palette. There are many such palettes available, and the entire collection can be found at www.google.com/design/spec/style/color.html#color-color-palette.

Whichever palette you decide to use as your primary colors, Google recommend that you use shades with values of 500 and 700:

This does not have to be enforced too strictly, but it usually a good idea to stick close to these values and to always select two shades of the same color.

Tip

The theme editor can be very helpful here; not only...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Create efficient object interaction patterns for faster and more efficient Android development
  • Get into efficient and fast app development and start making money from your android apps
  • Implement industry-standard design patterns and best practices to reduce your app development time drastically

Description

Are you an Android developer with some experience under your belt? Are you wondering how the experts create efficient and good-looking apps? Then your wait will end with this book! We will teach you about different Android development patterns that will enable you to write clean code and make your app stand out from the crowd. The book starts by introducing the Android development environment and exploring the support libraries. You will gradually explore the different design and layout patterns and get to know the best practices of how to use them together. Then you’ll then develop an application that will help you grasp activities, services, and broadcasts and their roles in Android development. Moving on, you will add user-detecting classes and APIs such as gesture detection, touch screen listeners, and sensors to your app. You will also learn to adapt your app to run on tablets and other devices and platforms, including Android Wear, auto, and TV. Finally, you will see how to connect your app to social media and explore deployment patterns as well as the best publishing and monetizing practices. The book will start by introducing the Android development environment and exploring the support libraries. You will gradually explore the different Design and layout patterns and learn the best practices on how to use them together. You will then develop an application that will help you grasp Activities, Services and Broadcasts and their roles in Android development. Moving on, you will add user detecting classes and APIs such as at gesture detection, touch screen listeners and sensors to our app. You will also learn to adapt your app to run on tablets and other devices and platforms, including Android Wear, Auto, and TV. Finally, you will learn to connect your app to social media and explore deployment patterns and best publishing and monetizing practices.

Who is this book for?

This book is intended for Android developers who have some basic android development experience. Basic Java programming knowledge is a must to get the most out of this book.

What you will learn

  • Build a simple app and run it on real and emulated devices
  • Explore the WYSIWYG and XML approaches to material design provided within Android Studio
  • Detect user activities by using touch screen listeners, gesture detection, and reading sensors
  • Apply transitions and shared elements to employ elegant animations and efficiently use the minimal screen space of mobile devices
  • Develop apps that automatically apply the best layouts for different devices by using designated directories
  • Socialize in the digital word by connecting your app to social media
  • Make your apps available to the largest possible audience with the AppCompat support library

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 26, 2016
Length: 370 pages
Edition : 1st
Language : English
ISBN-13 : 9781786467218
Vendor :
Google
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Dec 26, 2016
Length: 370 pages
Edition : 1st
Language : English
ISBN-13 : 9781786467218
Vendor :
Google
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 141.97
Hands-On Android UI Development
$43.99
Android Design Patterns and Best Practice
$48.99
Expert Android Programming
$48.99
Total $ 141.97 Stars icon

Table of Contents

13 Chapters
1. Design Patterns Chevron down icon Chevron up icon
2. Creational Patterns Chevron down icon Chevron up icon
3. Material Patterns Chevron down icon Chevron up icon
4. Layout Patterns Chevron down icon Chevron up icon
5. Structural Patterns Chevron down icon Chevron up icon
6. Activating Patterns Chevron down icon Chevron up icon
7. Combining Patterns Chevron down icon Chevron up icon
8. Composing Patterns Chevron down icon Chevron up icon
9. Observing Patterns Chevron down icon Chevron up icon
10. Behavioral Patterns Chevron down icon Chevron up icon
11. Wearable Patterns Chevron down icon Chevron up icon
12. Social Patterns Chevron down icon Chevron up icon
13. Distribution Patterns Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.3
(3 Ratings)
5 star 33.3%
4 star 0%
3 star 33.3%
2 star 33.3%
1 star 0%
Sudarsan Jul 28, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
very nice book with complex concepts explain in easy way
Amazon Verified review Amazon
GN Reddy Jan 24, 2018
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
Did not take any care in writing and editing. Explanation is awkward.
Amazon Verified review Amazon
Damian Hamilton Jul 23, 2018
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
This book is mysterious: why does a book have no customer reviews after being on the market for 2 years (2018 at the time of this review), and why is Amazon promoting it at the top of the list?The author may well be a very good programmer and even a good writer, but the book is not good. It reads like a good idea with a rushed execution. Errata fill page after page (yet the publisher's website doesn't seem to have an errata page for this volume - in fact, I couldn't find this volume at all when I went to the page listed in the book and searched for the title.) Code examples are often half-finished with blatant gaps and missing code; or code just doesn't match the text describing it, or vital details are left out.I was hoping the core premise of the book would be a straightforward "here is a list of common Android projects; here are the Industry Standard steps you can follow to narrow down which Design Patterns are best for a given problem." Instead it just lists design pattern concepts and chucks in some (broken) code for you to clumsily follow along, and sometimes explains why you're doing X instead of Y ... but not usually.A whole team of proofreaders and editors is listed inside the cover (Safis Editing?) but I find it hard to believe that anyone proofread this book at all. Honestly, if I had to guess, I'd say the author was 3/4 of the way through his first rough draft and the publisher told him it was due and sent it out the door, sight unseen.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.