Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tibolte/elasticdownload
We are not Gif makers, We are developers
https://github.com/tibolte/elasticdownload
Last synced: 5 days ago
JSON representation
We are not Gif makers, We are developers
- Host: GitHub
- URL: https://github.com/tibolte/elasticdownload
- Owner: Tibolte
- Created: 2015-02-15T20:30:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-10T00:17:05.000Z (over 6 years ago)
- Last Synced: 2024-07-31T18:17:03.458Z (5 months ago)
- Language: Java
- Homepage:
- Size: 303 KB
- Stars: 1,654
- Watchers: 49
- Forks: 266
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# We are not Gif makers, We are developers
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.tibolte/elasticdownload/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.tibolte/elasticdownload)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-ElasticDownload-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/1747)Recently me and my friend came across this downloading animation on Dribble: https://dribbble.com/shots/1887815-Download?list=users&offset=4
We found it so nice that we decided to develop it for Android!We implemented it with a custom view, playing with canvas rotation and path drawing.
![](https://raw.githubusercontent.com/Tibolte/ElasticDownload/master/success.gif)
![](https://raw.githubusercontent.com/Tibolte/ElasticDownload/master/fail.gif)## System Requirement
Android v2.2+Usage
===============================Grab it from maven:
```groovy
implementation 'com.github.tibolte:elasticdownload:1.0.+'
````Declare this view in your layout like below, it's also possible to inflate it manually.
```java
````At first, call startIntro() to make the view be able to display any percentage:
```java
@InjectView(R.id.elastic_download_view) ElasticDownloadView mElasticDownloadView;
mElasticDownloadView.startIntro();
````Set any progress:
```java
mElasticDownloadView.setProgress(25);
````Notify if the download has failed or not:
```java
mElasticDownloadView.success(); //This function moves the cursor to 100 if the progress has not been set already
mElasticDownloadView.fail();
````# Participating?
Make your pull requests on feature or bugfix branches.License
-----------Copyright 2015 Thibault Guégan and Aron Ingi Óskarsson
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 athttp://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.