Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/recruit-lifestyle/PlayPauseButton
https://github.com/recruit-lifestyle/PlayPauseButton
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/recruit-lifestyle/PlayPauseButton
- Owner: recruit-lifestyle
- License: apache-2.0
- Created: 2015-07-28T06:25:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-02T07:18:32.000Z (over 8 years ago)
- Last Synced: 2024-06-16T01:31:57.779Z (5 months ago)
- Language: Java
- Homepage: https://www.youtube.com/watch?v=p9mtTcH2gAo
- Size: 180 KB
- Stars: 280
- Watchers: 23
- Forks: 53
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-github-android-ui - PlayPauseButton - 制作动画播放状态的视图 (按钮)
README
# PlayPauseButton
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-PlayPauseButton-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/2247)
[![Release](https://img.shields.io/github/release/recruit-lifestyle/PlayPauseButton.svg?label=maven version)](https://github.com/recruit-lifestyle/PlayPauseButton)
[![License](https://img.shields.io/hexpm/l/plug.svg)]()The View makes Animation the state of play.
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=p9mtTcH2gAo&feature=youtu.be).*![](./sc/animation.gif)
## 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:PlayPauseButton:1.0'
}
```2) Add ```java jp.co.recruit_lifestyle.android.widget.PlayPauseButton``` to your layout XML file.
```xml
```
3) Add ```PlayPauseButton.OnControlStatusChangeListener```
```java
playPauseButton.setOnControlStatusChangeListener(new PlayPauseButton.OnControlStatusChangeListener() {
@Override public void onStatusChange(View view, boolean state) {
if(state) {
mMediaPlayer.start();
} else {
mMediaPlayer.pause();
}
}
});
```## Credits
WaveSwipeRefresh is owned and maintained by [RECRUIT LIFESTYLE CO., LTD.](http://www.recruit-lifestyle.co.jp/)
WaveSwipeRefresh 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.