Created
February 10, 2020 07:23
-
-
Save sudiptamondal/91eeab62b449e120ea08ede3b10b7ecc to your computer and use it in GitHub Desktop.
CreateNotif.java-2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final NotificationCompat.Builder builder = new NotificationCompat.Builder(this, "1000111") | |
.setContentTitle("Notification Title") | |
.setSmallIcon(R.drawable.ic_stat_name) | |
.setContentText("Notification Text") | |
.setPriority(NotificationCompat.PRIORITY_DEFAULT); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment