morphy-toolbar 一款可收缩, 展开的 Android 渐变工具栏

jopen 8年前

morphy-toolbar 一款可收缩, 展开的 Android 渐变工具栏

Ever wanted a beautiful transition when switching fragments?

Morphy Toolbar is your answer :)

Overview

Why did I create this library? I often read questions on stack overflow on how to reproduce an animation like this one, more or less always resulting in the use of the design support library CollapsibleToolbar. However, I find this library to be quite buggy, and it aims to be used for scrolling events.
I needed this library to have a custom toolbar with a picture, title and subtitle, and the possibility to animate it when switching fragments.

  • Easiest integration ever
  • No need to handle transitions or whatever youself
  • Perfect to animate a small changes statically without scrolling events
  • Several customisations already possible, more to come
  • Smooth animation for transitions (for example when switching fragments)

Sample

You can checkout the Sample Application on the Play Store

Setup

First, add jitpack in your build.gradle at the end of repositories:

repositories {      // ...             maven { url "https://jitpack.io" }  }

Then, add the library dependency:

compile 'com.github.badoualy:morphy-toolbar:1.0.3'

Now go do some awesome stuff!

Usage

// Attach to the given activity/toolbar  MorphyToolbar morphyToolbar = MorphyToolbar.builder(this, toolbar)          .withToolbarAsSupportActionBar()          .withTitle("Minions [not so] serious talk")          .withSubtitle("160 participants")          .withPicture(R.drawable.img_profile)          .withHidePictureWhenCollapsed(false)          .build();    morphyToolbar.expand();  morphyToolbar.collapse();

All the customizations are made using the builder methods, you can chose to hide the picture when in collpased mode, to not have any subtitle, ...

I'll gladly accept any merge request to enhance this library


项目地址: https://github.com/badoualy/morphy-toolbar