Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wangjiegulu/WaveCompat
Wave effect of activity animation
https://github.com/wangjiegulu/WaveCompat
Last synced: 3 months ago
JSON representation
Wave effect of activity animation
- Host: GitHub
- URL: https://github.com/wangjiegulu/WaveCompat
- Owner: wangjiegulu
- License: apache-2.0
- Created: 2015-05-29T11:45:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-14T10:42:37.000Z (over 9 years ago)
- Last Synced: 2024-06-28T13:32:02.968Z (5 months ago)
- Language: Java
- Size: 870 KB
- Stars: 348
- Watchers: 15
- Forks: 81
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/wangjiegulu/WaveCompat
- awesome-android-ui - https://github.com/wangjiegulu/WaveCompat
README
# WaveCompat
Wave effect of activity animation
# How to use
### 1. Bind wave touch helper to a view which will start an activity when it clicked:
```java
WaveTouchHelper.bindWaveTouchHelper(view, onWaveTouchHelperListener);
```
### 2. Override onWaveTouchUp() method in `OnWaveTouchHelperListener`:
```java
@Override
public void onWaveTouchUp(View view, Point locationInView, Point locationInScreen) {
WaveCompat.startWaveFilter(this,
new WaveDrawable()
.setColor(0xff8B2252)
.setTouchPoint(locationInScreen),
generateIntent(0xff8B2252));
}
private Intent generateIntent(int color) {
Intent intent = new Intent(context, SecondWareTestActivity.class);
intent.putExtra(WaveCompat.IntentKey.BACKGROUND_COLOR, color);
return intent;
}
```
### 3. Default Initial transition of the TO activity(Optional)
```java
getWindow().setBackgroundDrawable(new ColorDrawable((backgroundFromColor = getIntent().getIntExtra(WaveCompat.IntentKey.BACKGROUND_COLOR, 0xff8B7D6B))));
WaveCompat.transitionInitial(this, ABTextUtil.dip2px(context, 80), backgroundFromColor, Color.GRAY);
```License
=======Copyright 2015 Wang Jie
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.