# BadgeView **Repository Path**: mirrors_elevenetc/BadgeView ## Basic Information - **Project Name**: BadgeView - **Description**: Badge view with animated effect which shows a bitmap or a text - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-01-11 - **Last Updated**: 2026-01-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # BadgeView Badge view with animated effect which shows a bitmap or a text. ![animation](docs/badgeview-spongebob.gif) ### 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