Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/d-clock/scratchview

This is a android custom view , like a scratch card effect!
https://github.com/d-clock/scratchview

Last synced: about 23 hours ago
JSON representation

This is a android custom view , like a scratch card effect!

Awesome Lists containing this project

README

        

# ScratchView

This is a android custom view , like a scratch card effect!

## Last Update

- 采纳[DearZack童鞋的优化思路](https://github.com/D-clock/ScratchView/issues/3),把计算擦除面积比例的操作放在手指离开屏幕时,以降低对CPU的占用。

## Articles

- [ScratchView:一步步打造万能的 Android 刮奖效果控件](http://www.jianshu.com/p/2514a08d8217)

## Demo screen

![ScratchView](screen/scratch-demo-screen.gif)

## Import

Gradle

```

dependencies {
compile 'com.clock.scratch:Scratch:1.0.0'
}

```

Maven

```

com.clock.scratch
Scratch
1.0.0
pom

```

## How to use

- Create a contains of content view and ScratchView FrameLayout,let ScratchView displayed in the top.

```xml




```

- Key Properties and Java API

| Properties | Java API |
|------------|----------|
| scratch:maskColor | setMaskColor(int color) |
| scratch:watermark | setWatermark(int resId) |
| scratch:eraseSize | setEraserSize(float eraserSize) |
| scratch:maxPercent | setMaxPercent(int max) |

More use , you need see the demo code...

## License

Copyright 2016 D_clock爱吃葱花

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.