Android-animated-toolbar


Source link: https://github.com/kassisdion/Android-animated-toolbar

Android-animated-toolbar

What's Android-animated-toolbar ?

One day, I saw a question about "How to implement fade_in on the under the actionBar". I find this question really interesting so i started to find out a solution and 1 day later this sample was born.

Demo

Feature

  • Same characteristics as android.support.v7.widget.Toolbar
  • Can be use under fragment and activity.
  • Two animations : fade_in and fade_out.
  • You can choose the animation duration.
  • You can choose a delay (time before launching the animation).
  • You can choose the color of the animation.
  • You can add an onAnimationEnded() listener.
  • You can stop the animation.

Next version is comming with the menuItem support, see https://github.com/kassisdion/Android-animated-toolbar/issues/1

Import

JitPack

Add it in your project's build.gradle at the end of repositories:

repositories {

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

Step 2. Add the dependency in the form

dependencies {

compile 'com.github.kassisdion:Android-animated-toolbar:v1.1.0' 
}

Usage

Step 1 : Define your toolbar under your xml :

<?xml version="1.0" encoding="utf-8"?>
  <com.kassisdion.lib.toolbar.AnimatedToolbar

xmlns:android="http://schemas.android.com/apk/res/android"

android:id="@+id/toolbar"

android:layout_width="match_parent"

android:layout_height="?attr/actionBarSize" />

Step 2 : Initialize the toolbar under your activity :

 @Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

AnimatedToolbar toolbar = (AnimatedToolbar) findViewById(R.id.toolbar);

setSupportActionBar(toolbar);

  
}

Step 3 : Start the animation :

You can start the animation from your activity or from your fragment


  final int duration = 2 * 1000; //animation duration in ms

toolbar.getAnimator()

 .startAnimation(duration, ToolbarAnimator.AnimationType.FADE_IN);

You can add some extra parameters before starting the animation :


  toolbar.getAnimator()

  .setCallback(new ToolbarAnimatorCallback() {

@Override

public void hasEnded() {

 //Do what you want, animation has ended

}

  
}
)

  .setDelay(1 * 1000)//time before starting animation (in ms)

  .startAnimation(duration, ToolbarAnimator.AnimationType.FADE_IN

Sample

You can take look at the app folder more information.

Javadoc

You can take a look at the javadoc

License

See LICENSE.txt

Contact

If you have any new idea about this project, feel free to contact me.

Resources

Expansion pack for Android Volley Framework.

NeatLE is an Android BTLE (Bluetooth low energy) support library that simplifies management of BTLE connections, subscriptions, devices and operations. It provides a single entry point for all BTLE related operations and helps you:

  • Monitor connections to a BTLE devices.
  • Send read / write commands and receive responses.
  • Subscribe to characteristics and get notified of changes.

An easy to use implementation for fast scroll RecyclerView.

Simple Android app written in Kotlin.

The app uses JSONPlaceholder as a REST API. Communication with API is done using Retrofit together with RxJava2 Adapter. RxJava2 is used for all network related threading. The presentation layer is based on MVP architectural pattern.

Simply accessible and secure shared preferences for the Android platform.

A simple and easy way to create Intro/Welcome screen for your android application.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes