# BadgeView
**Repository Path**: TuDouSam/BadgeView
## Basic Information
- **Project Name**: BadgeView
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 1
- **Created**: 2022-02-21
- **Last Updated**: 2025-01-09
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# BadgeView
Badge view with animated effect which shows a bitmap or a text.

### Usage
```XML
```
```Java
BadgeView badgeView = new BadgeView(this);
badgeView.setValue(R.string.hello);
```
### XML attributes
```XML
```
### Animations
To show values sequentially use `setValues` method:
```Java
Bitmap bitmapX;
badgeView.setValues(0, 1, bitmapX, 3, "How are you?");
```
To define partucular delay for each value use helper class `BadgeView.AnimationSet`:
```Java
new BadgeView.AnimationSet(badgeView)
.add("Hi!", 1000)
.add("How are you?", 1200)
.add("Im fine!", 1500)
.play();
```
### Download
```Groovy
repositories {
maven { url "https://jitpack.io" }
}
//...
dependencies {
//...
compile 'com.github.elevenetc:badgeview:v1.0.0'
}
```
### Licence
http://www.apache.org/licenses/LICENSE-2.0