코딩하는 일용직 노동자

NotificationBadge 라이브러리 소개 본문

안드로이드

NotificationBadge 라이브러리 소개

bacass 2021. 2. 22. 21:28

노티피케이션 라이브러리입니다.
앱 내에서 뱃지를 구현할때는 이미지뷰와 텍스트뷰를 이용해 커스텀해서 만들기도 하는데
간편하게 구현할때 사용하면 좋을듯 합니다.

gradle 에 아래처럼 셋팅해줍니다.

implementation 'com.nex3z:notification-badge:1.0.4'


레이아웃에는 아래처럼 셋팅해줍니다.

<com.nex3z.notificationbadge.NotificationBadge
    android:id="@+id/badge"
    android:layout_width="28dp"
    android:layout_height="28dp"
    app:nbMaxTextLength="2"/>

이용할 수 있는 속성값은 다음과 같습니다.

https://github.com/nex3z/NotificationBadge

 

nex3z/NotificationBadge

A notification badge with animation. Contribute to nex3z/NotificationBadge development by creating an account on GitHub.

github.com