A Cool pull to refresh widget provided with character animation in header with user defined text. Customise your widget and show off your home screen!!
An simple general purpose UI library to add pull to refresh functionality with cool header text animation, which provides different customizations which allows to change header text, animation, color animation etc. Choose combination of your choice and rock your app screen. ***
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.HarinTrivedi:AnimatedPullToRefresh-master:1.0.4'
}
1. Inside layout xml
Add namespace in layout like:
xmlns:app="http://schemas.android.com/apk/res-auto"
Use AnimatedPullToRefresh in xml layout like:
<com.hlab.animatedPullToRefresh.AnimatedPullToRefreshLayout
android:id="@+id/pullToRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:animationSpeed="fast"
app:headerBackgroundColor="@color/colorWhite"
app:headerLoopAnimIteration="1"
app:headerLoopAnimation="zoom"
app:headerText="@string/str_loading"
app:headerTextAnimIteration="1"
app:headerTextAnimation="rotateCW"
app:headerTextColor="@color/colorLabelDark"
app:headerTextColorAnimationEnabled="true"
app:headerTextFontFamily="@font/lobster"> // new font support
<!-- Your view -->
</com.hlab.animatedPullToRefresh.AnimatedPullToRefreshLayout>
Attributes
headerTextFontPath : Custom font path from assets
2. Inside Activity/Fragment
... implements AnimatedPullToRefreshLayout.OnRefreshListener {
...
AnimatedPullToRefreshLayout mPullToRefreshLayout = (AnimatedPullToRefreshLayout) findViewById(R.id.pullToRefreshLayout);
// Provide array of colors to add color animation of your choice
mPullToRefreshLayout.setColorAnimationArray(new int[]{Color.CYAN, Color.RED, Color.YELLOW, Color.MAGENTA});
// Set refresh listener
mPullToRefreshLayout.setOnRefreshListener(this);
...
}
Copyright 2020 Harry's Lab
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.