smooth-app-bar-layout


Source link: https://github.com/henrytao-me/smooth-app-bar-layout

smooth-app-bar-layout [Deprecated]

================

[DEPRECATED] The issue that is addressed in this library is fixed from support design 26.0.0 or above (finally). Please use support design instead.

This is a smooth version of Google Support Design AppBarLayout. If you are using AppBarLayout, you will know it has an issue with fling. Check out these threads to know about that problem: http://stackoverflow.com/questions/30923889/flinging-with-recyclerview-appbarlayout https://code.google.com/p/android/issues/detail?id=177729...

If you find that it still doesn't meet your need, don't hesitate to send me a request. I love to work with you to solve problems. Send a request HERE

Installation

compile "me.henrytao:smooth-app-bar-layout:<latest-support-design-version>.<latest-smooth-app-bar-layout-fix>"

Example: if the latest support design version is 24.1.0 and SmoothAppBarLayout fix is 0, please use compile "me.henrytao:smooth-app-bar-layout:24.1.0.0". Please check TAGS section to see all supported versions.

  • smooth-app-bar-layout is an UI library and pretty much depended on AppCompat and Support Design. So that, versioning is quite the same with those libraries from Google.
  • smooth-app-bar-layout is deployed to jCenter. Make sure you have jcenter() in your project gradle.

Tested environments

  • "com.android.support:design:23.1.1"
  • "com.android.support:appcompat-v7:23.1.1"

Demo

Please note that the app on the Play store is not always the latest version.

Concepts

Features

  • Scroll
  • EnterAlways
  • EnterAlwaysCollapsed
  • ExitUntilCollapsed
  • QuickReturn
  • Custom NestedScrollView (NEW)
  • ViewPager Scroll
  • ViewPager ExitUntilCollapsed (NEW)
  • ViewPager QuickReturn (NEW)
  • Support SwipeRefreshLayout

Checkout these demo videos:

Important Notes

  • Remember to set android:id for me.henrytao.smoothappbarlayout.SmoothAppBarLayout in layout file so that it can call onSaveInstanceState and onRestoreInstanceState correctly. Otherwise, it won't work correctly with onOrientationChanged.
  • Remember to set android:minHeight for me.henrytao.smoothappbarlayout.SmoothAppBarLayout in layout file if you use ViewPager.
  • clipToPadding in RecyclerView won't work. You have to set HeaderHolder in apdater and it has to be placed at index 0.

Usage

Super easy! Just need to do 3 steps:

  • Change android.support.design.widget.AppBarLayout to me.henrytao.smoothappbarlayout.SmoothAppBarLayout and set android:id
  • Remove app:layout_behavior="@string/appbar_scrolling_view_behavior".
  • Add header to your NestedScrollView or RecyclerView.

Original AppBarLayout from Google Support Design

<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.support.v7.widget.RecyclerView
  android:id="@android:id/list"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  app:layout_behavior="@string/appbar_scrolling_view_behavior" />
 <android.support.design.widget.AppBarLayout
  android:layout_width="match_parent"
  android:layout_height="@dimen/app_bar_height">

<android.support.design.widget.CollapsingToolbarLayout

 android:id="@+id/collapsing_toolbar_layout"

 android:layout_width="match_parent"

 android:layout_height="match_parent"

 app:layout_scrollFlags="scroll|exitUntilCollapsed">

  <android.support.v7.widget.Toolbar

android:id="@+id/toolbar"

app:layout_collapseMode="pin"

app:navigationIcon="@drawable/ic_toolbar_arrow_back"

style="@style/AppStyle.MdToolbar" />
  </android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout> </android.support.design.widget.CoordinatorLayout>

SmoothAppBarLayout

<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.support.v7.widget.RecyclerView
  android:id="@android:id/list"
  android:layout_width="match_parent"
  android:layout_height="match_parent" />
 <me.henrytao.smoothappbarlayout.SmoothAppBarLayout
  android:id="@+id/smooth_app_bar_layout"
  android:layout_width="match_parent"
  android:layout_height="@dimen/app_bar_height">

<android.support.design.widget.CollapsingToolbarLayout

 android:id="@+id/collapsing_toolbar_layout"

 android:layout_width="match_parent"

 android:layout_height="match_parent"

 app:layout_scrollFlags="scroll|exitUntilCollapsed">

  <android.support.v7.widget.Toolbar

android:id="@+id/toolbar"

app:layout_collapseMode="pin"

app:navigationIcon="@drawable/ic_toolbar_arrow_back"

style="@style/AppStyle.MdToolbar" />
  </android.support.design.widget.CollapsingToolbarLayout>
</me.henrytao.smoothappbarlayout.SmoothAppBarLayout> </android.support.design.widget.CoordinatorLayout>

SmoothCollapsingToolbarLayout example

<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.support.v7.widget.RecyclerView
  android:id="@android:id/list"
  android:layout_width="match_parent"
  android:layout_height="match_parent" />
 <me.henrytao.smoothappbarlayout.SmoothAppBarLayout
  android:id="@+id/smooth_app_bar_layout"
  android:layout_width="match_parent"
  android:layout_height="@dimen/app_bar_height">

<android.support.design.widget.CollapsingToolbarLayout

 android:id="@+id/collapsing_toolbar_layout"

 android:layout_width="match_parent"

 android:layout_height="match_parent"

 app:layout_scrollFlags="scroll|exitUntilCollapsed">

  <android.support.v7.widget.Toolbar

android:id="@+id/toolbar"

app:layout_collapseMode="pin"

app:navigationIcon="@drawable/ic_toolbar_arrow_back"

style="@style/AppStyle.MdToolbar" />

  <me.henrytao.smoothappbarlayout.SmoothCollapsingToolbarLayout

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:gravity="left|center_vertical"

android:minHeight="?attr/actionBarSize"

app:sctl_avatar_id="@+id/avatar"

app:sctl_collapsed_avatarSize="?attr/mdIcon_sm"

app:sctl_collapsed_offsetX="?attr/actionBarSize"

app:sctl_collapsed_offsetY="0dp"

app:sctl_collapsed_subtitleTextSize="14dp"

app:sctl_collapsed_titleTextSize="16dp"

app:sctl_expanded_avatarSize="?attr/mdIcon_lg"

app:sctl_expanded_offsetX="?attr/mdLayout_spacing_md"

app:sctl_expanded_offsetY="?attr/mdLayout_spacing_md"

app:sctl_expanded_subtitleTextSize="16dp"

app:sctl_expanded_titleTextSize="34dp"

app:sctl_subtitle_id="@+id/subtitle"

app:sctl_title_id="@+id/title">

 <ImageView

  android:id="@+id/avatar"

  android:layout_width="?attr/mdIcon_sm"

  android:layout_height="?attr/mdIcon_sm"

  android:layout_gravity="center_vertical"

  android:src="@drawable/ic_blank_circle" />

 <LinearLayout

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:layout_gravity="center_vertical"

  android:layout_marginLeft="?attr/mdLayout_spacing_md"

  android:orientation="vertical">

<TextView

 android:id="@+id/title"

 android:text="Title"

 style="@style/MdText.Title" />

<TextView

 android:id="@+id/subtitle"

 android:text="Subtitle"

 style="@style/MdText.Body1" />

</LinearLayout>

 </me.henrytao.smoothappbarlayout.SmoothCollapsingToolbarLayout>
  </android.support.design.widget.CollapsingToolbarLayout>
</me.henrytao.smoothappbarlayout.SmoothAppBarLayout> </android.support.design.widget.CoordinatorLayout>

Contributing

Any contributions are welcome!
Please check the CONTRIBUTING guideline before submitting a new issue. Wanna send PR? Click HERE

Donation

Let's buy me some coffee 🙇

License

Copyright 2015 "Henry Tao <[email protected]>"  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

This library aims to provide a chat UI view.

  • You need to write just few code to create chat view
  • Easy to use for a chat app

SectionedMergeAdapter is a library based on MergeAdapter by CommonsWare. It allows you to work with sections and subheaders in your ListViews. With this library, you get the advantage of stitching together the rows and the header of the subsection in the subsection itself. For example, if there are no rows in a subsection of the ListView, the header of the subsection is also not shown.

One tool to manage key generation, key storing and encryption on different APIs of Android.

As you may know android provided API to use keystore that is stored in system only from API 18. They introduced AndroidKeyStore provider that is responsible to manage this.

But as always there are underwater stones. Up to API 23 you are only able to create asymmetric keys using AndroidKeyStore provider. Also algorithms that you can use are limited. And what about devices below API 18 ?

This project provides API that wraps default JCA api and AndroidKeyStore API and makes it easy to create, manage and use your keys on any andorid API.

Fontometrics is an Android library which help to use customs font with just writing one line of code avoiding all the hassle to add the .ttf/.otf font files in the assests folder.

Library to help developers build full MVP apps.

A showcase to demonstrate how to use MVP with RXAndroid.

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