BlurZoomGallery


Source link: https://github.com/fafaldo/BlurZoomGallery

BlurZoomGallery

Extended CoordinatorLayout, that helps creating background galleries.

Features:

  • expandable Collapsing Toolbar Layout, making space for a background view
  • hadling of expand/collapse animation
  • blurring of background view on collapse animation
  • zoom effect on collapse

How to use

Import dependency using Gradle:

compile 'com.github.fafaldo:blur-zoom-gallery:1.0.0' 

In order to use BlurZoomGallery you need to implement following view hierarchy in your XML layout file:

| |-> BlurZoomCoordinatorLayout  |  |-> Gallery container layout (id: gallery_coordinator_gallery_container)  | |  | |-> Gallery view (for example ViewPager; id: gallery_coordinator_gallery)  |  |-> AppBarLayout (id: gallery_coordinator_appbarlayout)  | |  | |-> CollapsingToolbarLayout  |  |  |  |-> Toolbar (id: gallery_coordinator_toolbar)  |  |-> Scrollable view (for example NestedScrollView; id: gallery_coordinator_scroll)
|
|-> Placeholder view that will be expanded, must be first element of view to make it work (id: gallery_coordinator_placeholder)
... 

Remember to assign each element a proper ID. This structure is very similar to structure implemented in Google's Support Design Library, for obvious reasons. Background gallery view should be placed inside a container, the container will be drawn and blurred but only the inner view will receive touch events. Placeholder view should be invisible and is used to expand upper and lower views.

Example implementation:

<com.github.fafaldo.blurzoomgallery.widget.BlurZoomCoordinatorLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".MainActivity"
  android:id="@+id/coordinator">

<FrameLayout

android:id="@+id/gallery_coordinator_gallery_container"

android:layout_width="match_parent"

android:layout_height="match_parent">

 <android.support.v4.view.ViewPager

 android:id="@+id/gallery_coordinator_gallery"

 android:layout_width="match_parent"

 android:layout_height="match_parent"/>

</FrameLayout>

<android.support.design.widget.AppBarLayout

android:id="@+id/gallery_coordinator_appbarlayout"

android:layout_height="300dp"

android:layout_width="match_parent"

android:background="@android:color/transparent"

app:elevation="0dp">

 <android.support.design.widget.CollapsingToolbarLayout

 android:id="@+id/collapsing_toolbar"

 android:layout_width="match_parent"

 android:layout_height="match_parent"

 app:layout_scrollFlags="scroll|exitUntilCollapsed"

 app:expandedTitleTextAppearance="@style/MyExpandedTextAppearance"

 app:collapsedTitleTextAppearance="@style/MyCollapsedTextAppearance"

 app:expandedTitleMargin="50dp"

 android:background="@android:color/transparent">

  <android.support.v7.widget.Toolbar

  android:id="@+id/gallery_coordinator_toolbar"

  android:layout_height="?attr/actionBarSize"

  android:layout_width="match_parent"

  app:layout_collapseMode="pin"/>

 </android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<android.support.v4.widget.NestedScrollView

android:id="@+id/gallery_coordinator_scroll"

android:layout_width="match_parent"

android:layout_height="match_parent"

app:layout_behavior="@string/appbar_scrolling_view_behavior"

android:paddingLeft="20dp"

android:paddingRight="20dp">

 <RelativeLayout

 android:layout_width="match_parent"

 android:layout_height="wrap_content">

  <View

  android:id="@+id/gallery_coordinator_placeholder"

  android:layout_width="match_parent"

  android:layout_height="0dp"/>

  ...

 </RelativeLayout>

</android.support.v4.widget.NestedScrollView>  </com.github.fafaldo.blurzoomgallery.widget.BlurZoomCoordinatorLayout>

Gallery will be automatically expanded on Collapsing Toolbar click. If you want to do it manually use function

expand();
 

Gallery collapses automatically on scrollable view click. To do it manually call

collapse();
 

If you want to listen for collapse and expand changes set the OnStateChangedListener. Blurring action takes some time so it's done asynchronously. To listen for success of blurring set OnBlurCompletedListener.

In case of other problems with implementation see example included in this repository.

Animation duration and interpolator

You can control duration and interpolator of the animator used to expand and collapse Toolbar with methods:

setInterpolator(Interpolator interpolator);
 setDuration(int duration);
 

However, Google APIs doesn't allow this kind of customization yet. My implementation uses Java's reflection mechanism, so be aware that this code might stop working in the future.

Blur animation is done using frame by frame animation, with each frame blurred more and more. ImageViews are added dynamically from the code. You can control max blur radius and number of blur steps. Remember, that adding too many ImageView might affect performance. In order to reduce memory consumption images are downscaled before blurring. You can control this downscaling with one of the parameters.

To properly use the selected duration and interpolator you should play expend/collapse animation on AppBarLayout at least once, before trying to open gallery by touching. You should call

appBarLayout.setExpanded(true, true);
 

By default AppBarLayout is expanded, so call function with first parameter set to 'true', to avoid unwanted animation on start-up. Remember to set second parameter to 'true' too, because only then will the inner fields be properly initiated.

Parameters:

You can control these parameters via XML:

<attr name="collapsedListHeight" format="dimension"/> //height of the scrollable view that will be left after view expand (in dp), default: 112 px <attr name="maxBlurRadius" format="float"/>
 //maximum radius of blur, default: 4 <attr name="blurSteps" format="integer"/>
 //steps of blur animation, default: 5 <attr name="bitmapSizeDivide" format="integer"/>  //how many times are images resized, before blurring, default: 5 <attr name="blurEnable" format="boolean"/>
 //enable blur, default: true <attr name="scaleEnable" format="boolean"/>
 //enable scale animation, default: true <attr name="maxScale" format="float"/>
  //maximum zoom of collapsed anim, default: 1.15 <attr name="android:scaleType"/>

//scaleType of blur steps ImageViews, default: CENTER_CROP 

Changelog

  • 1.0.0 - initial release

License

FABToolbar for Android

The MIT License (MIT)

Copyright (c) 2015 Rafa? Tu?aza

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Resources

LoadingButton is a custom view that shows and hide progressBar with text animation. You can specify the text animation direction.

A project which showcases usage of Dagger, RxJava and Retrolambda among other open source libraries.

Font manager for Android.

Custom layout that can rotate its view.

This project aims to solve the "password forgotten" problem for (Android) developers who happen to manage java keystore(s).

This plugin helps to:

  • Avoid problems with collaborators that do not stick to the defined SDK.
  • Removing the need to update the build.gradle file every time you update your android build-tools.

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