Android NotificationManager

1. Action 알림(Notification)에는 버튼(Action)을 추가할 수 있고, 여러가지 이벤트를 추가하여 간편하게 사용할 수 있다. Intent readPushIntent = new Intent(context, ActionPushReceiver.class); readPushIntent.setAction("ReadPushIntent"); readPushIntent.putExtra("notificationId", notificationId); PendingIntent readPushPendingIntent = null; if (android.os.Build.VERSION.SDK_INT >= 31) { readPushPendingIntent = PendingIntent.getBroadcast(co..
Bell91
'Android NotificationManager' 태그의 글 목록