morphy-toolbar 一款可收縮, 展開的 Android 漸變工具欄

jopen 8年前發布 | 20K 次閱讀 Android開發 移動開發

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

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!