woong's
Android Notification 여러개 사용하기 본문
Android Notification 여러개 사용하기
notification 이 여러개 발생 할때 , 중복으로 겹쳐서 하나만 나와서 찾아 보니 notify id 를 다르게
부여해 주어야 여러개의 notification 을 확인 할 수 있습니다.
1 | notificationManager.notify(int id , Notification notification); | cs |
위 코드에서 첫번째 파라미터의 값을 동일 하지 않게 넣어주시면 여러개의
notification 을 볼 수 있습니다.
'Develop > Android' 카테고리의 다른 글
Android SearchView 사용하기 (5) | 2016.02.14 |
---|---|
Android notification 선택시 데이터 전달 하기 (0) | 2016.02.14 |
Android ResideMenu 사용하기 (0) | 2016.02.14 |
Android 최신 ui 사용 포스트 (0) | 2016.02.14 |
Android RecyclerView ItemClcik 하기 (1) | 2016.02.14 |
Comments