FlyRefresh alternatives and similar packages
Based on the "App" category.
Alternatively, view FlyRefresh alternatives based on common mentions on social networks and blogs.
-
InstaMaterial
Implementation of Instagram with Material Design (originally based on Emmanuel Pacamalan's concept) -
Twidere-Android
Twidere is a powerful twitter client for Android 1.6+ 1 , which gives you a full Holo experience and nearly full Twitter's feature. -
Foodium 🍲
🍲Foodium is a sample food blog Android application 📱 built to demonstrate the use of Modern Android development tools - (Kotlin, Coroutines, Flow, Dagger 2/Hilt, Architecture Components, MVVM, Room, Retrofit, Moshi, Material Components). -
jianshi
A Full-Stack mobile app, including Android & Server, Simple-Poem 简诗. You can write poem in graceful & traditional Chinese style. -
Leisure
Leisure is an Android App containing Zhihu Daily,Guokr Scientific,XinhuaNet News and Douban Books -
WaniKani-for-Android
DISCONTINUED. An Android client application for the awesome kanji learning website wanikani.com -
LeeCo
LeeCo is an awesome app for (including unlock) problems, solutions, discuss(from leetcode) and comments. -
FoldingNavigationDrawer-Android
This is a sample project present how to use Folding-Android to add Folding Efect to Navigation Drawer. -
GradientDrawableTuner
🕹️ See how the properties of Android's "shape" affect the Drawable's appearance, intuitively. -
MaterialDesignColorPalette
This is a dev tool to visualize the colours of Material design defined on -
vanilla
Vanilla Music Player for Android (abandoned). Visit https://github.com/vanilla-music/vanilla for an actively developed fork -
freegemas-gdx
Freegemas libGDX is an Android and Java desktop port of Freegemas, which in turn is an open source version of the well known Bejeweled. -
Android-Jigsaw-Puzzle
Android app that allows you to draw anything and turn it into a jigsaw puzzle. -
PopularMovies
:movie_camera: Movie discovery app showcasing Android best practices with Google's recommended architecture: MVVM + Repository + Offline support + Android Architecture Components + Paging library & Retrofit2.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of FlyRefresh or a related project?
README
FlyRefresh
The Android implementation of Replace, designed by Zee Youn.
I implement this as a FlyRefresh layout. The content of the layout can be any NestedScrollingChild
, such as a RecyclerView, NestedScrollView, VerticalGridView, etc.
This library can also work with NestedScrollingParent
as parent, such as CoordinatorLayout.
How it looks
[flyrefresh](./images/flyrefresh.gif)
Features
- Work with all NestedScrollingParent and NestedScrollingChild
- Default minimize configuration for Replace animation
- Expendable/Shrinkable header
- Support custom header view
- Support custom refresh animation
How to use
Add Gradle dependency:
dependencies {
compile 'com.race604.flyrefresh:library:2.0.0'
}
An example of basic usage in layout.xml
:
<com.race604.flyrefresh.FlyRefreshLayout
android:id="@+id/fly_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="24dp"
android:background="#FFFFFF"/>
</com.race604.flyrefresh.FlyRefreshLayout>
Or you can use PullHeaderLayout
for more configurations, you can set custom attributes as shown below:
<declare-styleable name="PullHeaderLayout">
<!-- hader size -->
<attr name="phl_header_height" format="dimension" />
<attr name="phl_header_expand_height" format="dimension" />
<attr name="phl_header_shrink_height" format="dimension" />
<!-- header view id -->
<attr name="phl_header" format="reference" />
<!-- content view id -->
<attr name="phl_content" format="reference" />
<!-- Float action button icon -->
<attr name="phl_action" format="reference" />
</declare-styleable>
For more, please turn to the source code.
License
FlyRefresh
is available under the MIT license.
*Note that all licence references and agreements mentioned in the FlyRefresh README section above
are relevant to that project's source code only.