and Android imitates the number of unread messages on WeChat to show that the number BadgeView is greater than 99 and shows 99+…_Zhao Weilong’s Blog
Android repeatedly reminds unread messages, and Android imitates the number of unread messages on WeChat to show that the number BadgeView is greater than 99 and shows 99+…_Zhao Weilong’s Blog
【Introduction】 Android imitates the number of unread messages on Wechat and shows that the number BadgeView is greater than 99 and shows 99+ 【Example Screenshot】 【Core code】 BadgeView └── BadgeView ├── app │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ │ └── java │ │ └── q │ │ └── rorbin │ │ └── badgeviewdemo │ │ └── ExampleInstrumentedTest.java │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── q │ │ │ │ └── rorbin │ │ │ └── badgeviewdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable │ │ │ └── shape_round_rect.xml │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └──…