Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Quickreturnheader | 384 | 10 years ago | 9 | apache-2.0 | Java | |||||
A ListView/ScrollView header that hides when scrolling down and reappears immediately when scrolling up, regardless of how far down the list we've gone. Like the one from the Google Keep app. | ||||||||||
Googlepluslayout | 226 | 8 years ago | 2 | Java | ||||||
GoolgePlusLayout is a custom layout that plays animation on the children views while scrolling as the layout in the Google Plus (android) main page | ||||||||||
Googlecalendar | 136 | 2 months ago | 8 | apache-2.0 | Java | |||||
How make calendar like google calendar app in android using java and feature like Schedule, Day Views , Week Views, 3-Day Views, Year Views, Month Views, Zoom In/Out | ||||||||||
Materialtabslistscrolling | 90 | 8 years ago | 2 | Java | ||||||
Scroll | 56 | 5 years ago | 3 | mit | JavaScript | |||||
Dependency-free Scroll Observing Library | ||||||||||
Googlemaps Scrollprevent | 42 | 7 years ago | JavaScript | |||||||
:lock: googlemaps-scrollprevent avoid unwanted map interactions with the Google Maps Iframe. | ||||||||||
Like Google Maps | 22 | 5 years ago | other | Java | ||||||
Proof of concept to create a coordinator layout behavior that mimics the bottomsheet behvior in the Google Maps app. | ||||||||||
G Scrolling Carousel | 15 | a month ago | 2 | HTML | ||||||
Google like jQuery scrolling carousel plugin | ||||||||||
Stop Slide Scrolling | 9 | a year ago | 2 | mit | JavaScript | |||||
Removes annoying accidental slide scrolling behavior in Google Drive Presentations | ||||||||||
Scrolling_techniques_for_android | 4 | 7 years ago | 1 | Java | ||||||
Scrolling techniques using the Android Design Support Library |
###Introduction
QuickReturnHeader is a tiny Android library that implements the popular "quick return" design pattern for lists and scrollable content in general.
In this pattern, which can be found for instance in the Google Keep app, the header hides as soon as we start scrolling down, and reappears inmediately (regardless of how far down the list we are) as soon as we scroll up again. A video is worth a thousand images:
YouTube video coming soon
An alternative, more feature-complete implementation of the pattern can be found here. The benefits of QuickReturnHeader are that it's easier to use, has a simpler implementation, and can be used with ScrollViews in addition to ListViews.
Please keep in mind that this pattern (despite being used by Google itself in several applications) is somewhat controversial. Please read this before you decide whether you should use it in your application.
###Sample application
A sample application showcasing the different features of the library is available:
Google Play link coming soon
You can browse its source code to see how easy it is to integrate QuickReturnHeader in your application.
###Including in your project
Just add the library to your application as a library project. Or if you use maven, add the following dependency to your pom:
<dependency>
<groupId>com.github.manuelpeinado.fadingactionbar</groupId>
<artifactId>fadingactionbar</artifactId>
<version>2.1.0</version>
<type>apklib</type>
</dependency>
###Usage
Using the library is really simple, just look at the source code of the provided samples:
You can even use the library [from a fragment][8], which is useful when implementing a dual phone/tablet layout.
###Who's using it
Does your app use QuickReturnHeader? If you want to be featured on this list drop me a line.
###Developed By
Manuel Peinado Gallego - [email protected]
###License
Copyright 2013 Manuel Peinado
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.