Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/recruit-lifestyle/ColoringLoading
https://github.com/recruit-lifestyle/ColoringLoading
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/recruit-lifestyle/ColoringLoading
- Owner: recruit-lifestyle
- License: apache-2.0
- Created: 2015-08-07T07:56:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-20T08:09:31.000Z (over 9 years ago)
- Last Synced: 2024-08-09T13:15:59.547Z (5 months ago)
- Language: Java
- Size: 2.25 MB
- Stars: 378
- Watchers: 31
- Forks: 68
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/recruit-lifestyle/ColoringLoading
- awesome-android-ui - https://github.com/recruit-lifestyle/ColoringLoading
README
# ColoringLoading
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-ColoringLoading-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/2352)
[![Release](https://img.shields.io/github/release/recruit-lifestyle/ColoringLoading.svg?label=maven version)](https://github.com/recruit-lifestyle/ColoringLoading)
[![License](https://img.shields.io/hexpm/l/plug.svg)]()
This project provide Coloring Loading View for Android.
And this project is not using the image file!Even if this works fine with API.13 or less, we support only for API.14 or more.
## Screenshots
*Watch YouTube video [here](https://www.youtube.com/watch?v=FE2xtGytyGs).*
![](./sc/animation.gif)| NINJA | BUTTERFLY | VIOLIN |
|:------------------------------------|:-----------------------------------|:-----------------------------------|
| |||| RIFLE | HEAR STYLE | TOOTH |
|:------------------------------------|:-----------------------------------|:-----------------------------------|
| |||| CUCUMBER | STORM | DOGEZA |
|:------------------------------------|:-----------------------------------|:-----------------------------------|
| |||| CAT |
|:------------------------------------|
| |## Requirements
Target Sdk Version : 21
Min Sdk Version : 14## How to use
1) Add this to your **build.gradle**.
```java
repositories {
maven {
url "https://jitpack.io"
}
}dependencies {
compile 'com.github.recruit-lifestyle:ColoringLoading:1.0'
}
```2) Add ```java jp.co.recruit_lifestyle.android.widget.ColoringLoadingView ```.
```xml```
3) Select Character.
```java
loadingView.setCharacter(ColoringLoadingView.Character.BUTTERFLY);
```4) Call ```java ColoringLoadingView#startDrawAnimation```
```java
loadingView.startDrawAnimation();
```5) When finished, call setVisibility(GONE)
```java
loadingView.setVisibility(View.GONE);
```## Custom
If you need another Character, you can make new Character very easy.1) Make 100pt * 100pt Canvas with Illustrator
2) Draw new Character
3) Open ExtendScript ToolKit and import ConvertScript.jsx
4) Select new Character, Run ConvertScript.jsx
5) Copy the results outputted to CharacterPath.java
6) Update ColoringLoadingView.java
Update Character
Add new case and put in CharacterPath variable
## Credits
ColoringLoading is owned and maintained by [RECRUIT LIFESTYLE CO., LTD.](http://www.recruit-lifestyle.co.jp/)
ColoringLoading was originally created by [Yuki Mima](https://github.com/amyu)
## License
Copyright 2015 RECRUIT LIFESTYLE CO., LTD.
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.