Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Android Studio Cookbook

You're reading from   Android Studio Cookbook Design, test, and debug your apps using Android Studio

Arrow left icon
Product type Paperback
Published in Oct 2015
Publisher
ISBN-13 9781785286186
Length 232 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Mike van Drongelen Mike van Drongelen
Author Profile Icon Mike van Drongelen
Mike van Drongelen
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Great transitions

If you click on any of the cards it will display the entry view again with the comments and a preview of the picture that we took previously.

We do not just want to move from the list view to the detail view. Material design also takes care of great natural transitions. This recipe is going to apply just that.

Getting ready

To go through this recipe, you will need to have the previous recipes up and running. This recipe is going to add some animations to it.

How to do it…

The following steps will help us to add the animations to our app:

  1. Add a mDrink member to ViewHolder in the MainAdapter class:
    public Drink mDrink;
  2. In the same file in the onBindViewHolder method inform the view holder about the actual drink, just after the initialization of currentDrink:
    Drink currentDrink = mDrinks.get(position);
    holder.mDrink = currentDrink;
  3. In the onCreateViewHolder method, add an OnClickListener to the end:
    v.setTag(viewHolder);
    v.setOnClickListener(new View.OnClickListener() {
        ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime