Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NotificationManager mNotifyManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
- Notification.Builder nBuilder = new Notification.Builder(this);
- nBuilder.setContentTitle("IGRUS!");
- nBuilder.setContentText("YEAH");
- nBuilder.setSmallIcon(R.mipmap.ic_launcher);
- nBuilder.setOngoing(false);
- nBuilder.setProgress(0, 0, false);
- mNotifyManager.notify(1, nBuilder.build());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement