Collapsible-Toolbar-Helper


Source link: https://github.com/melvinjlobo/Collapsible-Toolbar-Helper


Collapsible-Toolbar-Helper


A combination of custom CollapsibleToolbar and Collapsing Text to give you the same effect as App Bar Layout from the Desgin support library sans the use of a Toolbar


ScreenShot



BACKGROUND :


CollapsibleToolbarHelper :

Although the new design support library allows us to do some cool stuff, the available sample code does not cover the potential that it has been built for. Most of the samples that I came across, including the cheese square example by Chris Banes, create the application so that minimum code has to be written.

But what if I want a different layout and implementation? My main requirement was that I did NOT require a Toolbar for my design. When going through the AOSP code for CollapsibleTollbarLayout in the design support library, I realized that it has a tight integration with the Toolbar. So, Initially, I decided to work around that. There are a very few blogs out there that actually go deep into the actual potential of the CollapsibleToolbarLayout.

Few of them are listed below:

  1. Thanks Grzesiek Gajewski
  2. Thanks Saul Molinero
  3. Thanks Rafa Vazquez

In a nutshell, it all boils down to a few things:

  1. Coordinator Layout controls the "behavior" of its children which implement CoordinatoLayout.Behavior Check out NestedScrollView "Behavior" or AppBarLayout "Behavior" or FAB "Behavior" for implementations

  2. AppBarLayout calls on a OnOffsetChangedListener implementation when it scrolls,
    which can be used to do stuff. Check out OnOffsetChangedListener in CollapsingToolbarLayout

Well, that was my premise of creating the CollapsibleToolbarHelper. It of course is derived heavily from the AOSP code, but with a few modifications. It supports the following collapse modes: - MOVE_ON_SCROLL = The children move when the collapsible toolbar collapses to hit the bottom of that view - PARALLAX_ON_SCROLL = THe usual parallax, move and then hide when the Toolbar collapses - PIN_ON_SCROLL = Stays at the position where it is laid out originally - HIDE_ON_COLLAPSE = Stays at its location and hides when the toolbar is collapsed - SHOW_ON_COLLAPSE = Is hidden at the location that it is supposed to and appears after the Toolbar has collapsed Note that it has to be used as a direct child of AppBarLayout since it depends on the OffsetChangedListener of the AppBarLayout to collapse and expand.

CollapsibleTextLayout :

Since I was designing the CollapsibleToolbar, I required a CollapsibleText as well. But the default CollapsibleTextHelper is coupled too tightly with the CollapsingToolbarLayout and not public to be modified. So, taking inspirations from AOSP, Chris banes' Philm and Nick Butchers Plaid, I wrote my own CollapsingTextlayout.

I know that there is a lot of room for improvement and that there are obvious optimizations and feature enhancements, but the main objective of re-writing these widgets was learning. I have collected all the ideas from the given references and tried to simplify the implementation as much as possible. The code is commented and should be self explanatory.

Interested? Well go ahead, download and use the widgets.


Usage

<android.support.design.widget.CoordinatorLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout

android:id="@+id/app_bar"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:paddingTop="5dp"

android:paddingBottom="30dp"

android:theme="@style/AppTheme.AppBarOverlay"

>

 <abysmel.com.collapsibletoolbarhelper.widgets.CollapsibleToolbarHelper

 android:id="@+id/toolbar_layout"

 android:layout_width="match_parent"

 android:layout_height="match_parent"

 app:layout_scrollFlags="scroll|exitUntilCollapsed"

 android:gravity="center_vertical"

 android:layout_marginTop="10dp"

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

 >

  <!--Note that the position has to be set with respect to the collapsed toolbar. So, 

 aligning it in center initially (centerInParent="true") will NOT work as it will remain 

 at its position even after the Toolbar collapses. Also note that the initially set the 

 alpha of the view to zero and NOT the visibility to gone, as the view will then have never 

 been drawn which will throw all calculations haywire for show_on_collapse. Wish there 

 was a better way to do this-->

 <ImageView

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:id="@+id/hello.img"

  android:src="@mipmap/hello"

  android:layout_marginLeft="10dp"

  android:alpha="0"

  app:layout_marginTopPercent = "3%"

  app:collapseMode="show_on_collapse"/>

  <!-- Title -->

 <abysmel.com.collapsibletoolbarhelper.widgets.CollapsibleTextLayout

  android:id="@+id/hello.text"

  android:layout_height="wrap_content"

  android:layout_width="wrap_content"

  app:layout_widthPercent="59%"

  android:layout_alignParentLeft="true"

  app:layout_marginTopPercent = "1%"

  app:layout_marginBottomPercent = "1%"

  app:layout_marginLeftPercent="5%"

  android:textColor="@android:color/white"

  app:collapseMode="pin_on_scroll"

  app:textToShow = "Hello World"

  app:expandedTextColor = "@android:color/white"

  app:collapsedTextColor = "@android:color/white"

  app:typefaceFamilyPrimary = "sans-serif-light"

  app:typefaceFamilySecondary = "sans-serif-medium"

  app:isMultiFaceted="true"

  app:typefaceSplitPosition="5"

  app:expandedTextSize = "62dp"

  app:collapsedTextSize = "32dp"

  app:maxExpandedTextSize = "62dp"

  />

  <!-- The hello number edit button -->

 <ImageView

  android:id="@+id/hello.edit"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:layout_alignParentRight="true"

  app:layout_marginTopPercent = "3%"

  app:layout_marginBottomPercent = "1%"

  app:layout_marginRightPercent = "4%"

  android:layout_marginLeft="10dp"

  android:src="@mipmap/pencil"

  app:collapseMode="hide_on_collapse"/>

  <!-- The hello Number -->

 <TextView

  android:id="@+id/hello.number"

  android:layout_height="wrap_content"

  android:layout_width="wrap_content"

  app:layout_widthPercent="40%"

  app:layout_marginTopPercent = "1%"

  app:layout_marginBottomPercent = "1%"

  app:layout_marginRightPercent = "1%"

  android:layout_toLeftOf="@id/hello.edit"

  android:layout_toRightOf="@id/hello.text"

  android:gravity="end"

  android:text="@string/hello_no_sign"

  android:textColor="@android:color/white"

  android:textSize="@dimen/hello_no_size"

  app:collapseMode="pin_on_scroll"/>

 <!-- Version -->

 <TextView

  android:id="@+id/version"

  app:layout_widthPercent="40%"

  android:layout_height="wrap_content"

  android:layout_width="wrap_content"

  android:layout_below="@id/hello.text"

  android:layout_marginTop="5dp"

  android:layout_alignParentLeft="true"

  app:layout_marginLeftPercent="5%"

  android:text="@string/version"

  android:textColor="@android:color/white"

  android:textSize="@dimen/version_no_size"

  app:collapseMode="parallax_on_scroll"

/>

  <!-- E-mail Address -->

 <TextView

  android:id="@+id/hello.address"

  app:layout_widthPercent="40%"

  android:layout_height="wrap_content"

  android:layout_width="wrap_content"

  android:layout_below="@id/hello.number"

  android:layout_alignParentRight="true"

  android:gravity="end"

  app:layout_marginRightPercent="5%"

  android:text="@string/emailaddress"

  android:textColor="@android:color/white"

  android:textSize="@dimen/mail_address_size"

  app:collapseMode="parallax_on_scroll"

/>

</abysmel.com.collapsibletoolbarhelper.widgets.CollapsibleToolbarHelper>
  </android.support.design.widget.AppBarLayout> </android.support.design.widget.CoordinatorLayout>

REFERENCES



LICENSE


The MIT License (MIT)

Copyright (c) 2016 Melvin Lobo

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

StripeCardEntry makes a simple and elegant credit card entry UI of Stripe and ports this to the Android Platform. In a nutshell StripeCardEntry has:

  • Support for Visa, Mastercard & American Express cards.
  • Number validation using Luhn algorithm ensures the user will not enter an invalid number.
  • Date validation ensures the user can only enter a valid expiry date.

An example project with SonarQube integration for proper code review and code structuring.

A woooow splash which like clouds disappear in the sky.

PermissionAcceptor allows to handle runtime permission in Marshmallow (Android 6.0).

Simple builder in plain Java to create requests to the Amazon Product Advertising API.

Amazon challenges all developers that want to use their Advertising API. Especially the creation of the request URL is pretty complex. Therefor I've created this URL Builder, which allows you to create the request URL without having to read the Product Advertisement API documentation or study the used hashing algorithms.

AuthManager is a library which eliminates the boilerplate of Google SignIn and SmartLock integration.

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