목록notification (2)
woong's
Android notification 선택시 데이터 전달 하기
Android notification 선택시 데이터 전달 하기 notification 을 통해서 선택시 액티비티에 데이터를 넘길 경우 단일의 notification 은 잘 되지만 ,다중의 notification 은 하나의 데이터가 중복으로 넘어가는 것을 확인 할 수 있습니다. 1PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, Intent intent , int flags)cs 위 코드 에서 PendingIntent 설정시 requestCode 를 달리 주면 의도한 데이터가 잘 넘어가는 것을 확인 할 수 있습니다. 동일한 requestCode 가 같은 경우 마지막 PendingIntent 로 치환 하기 때문에이와 ..
Develop/Android
2016. 2. 14. 18:31
Android Notification 여러개 사용하기
Android Notification 여러개 사용하기 notification 이 여러개 발생 할때 , 중복으로 겹쳐서 하나만 나와서 찾아 보니 notify id 를 다르게 부여해 주어야 여러개의 notification 을 확인 할 수 있습니다. 1notificationManager.notify(int id , Notification notification);cs 위 코드에서 첫번째 파라미터의 값을 동일 하지 않게 넣어주시면 여러개의 notification 을 볼 수 있습니다.
Develop/Android
2016. 2. 14. 18:31