일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 안드로이드 스튜디오
- 스튜디오
- RecyclerView
- Android
- dart
- 의존성주입
- GIT
- build
- coroutine
- 코루틴
- 안드로이드
- studio
- WebView
- 안드로이드스튜디오
- 레트로핏
- image
- Gradle
- 에러
- 유튜브
- 코틀린
- 웹뷰
- Kotlin
- MVVM
- ADB
- 안스
- error
- Github
- viewpager
- 깃헙
- Retrofit
- Today
- Total
목록Notification (2)
코딩하는 일용직 노동자
#1. Data만 보내는 경우 { "data":{ "title": "data title text", "body": "data body text", "link": "http://m.naver.com" } } Normal Priority를 기본으로 가지며 모바일 기기가 Doze 모드이거나 혹은 절전모드에 있을때 처리를 미루게 된다. #2. Notification만 보내는 경우 { "notification": { "title": "notification title text", "body": "notification body text", "link": "http://m.naver.com" } } Foreground 상태에선 onMessageReceived를 통해 전달된다. High Priority를 가지며 디바..
노티피케이션 라이브러리입니다. 앱 내에서 뱃지를 구현할때는 이미지뷰와 텍스트뷰를 이용해 커스텀해서 만들기도 하는데 간편하게 구현할때 사용하면 좋을듯 합니다. gradle 에 아래처럼 셋팅해줍니다. implementation 'com.nex3z:notification-badge:1.0.4' 레이아웃에는 아래처럼 셋팅해줍니다. 이용할 수 있는 속성값은 다음과 같습니다. https://github.com/nex3z/NotificationBadge nex3z/NotificationBadge A notification badge with animation. Contribute to nex3z/NotificationBadge development by creating an account on GitHub. gith..