Skip to content

Instantly share code, notes, and snippets.

@tatuas
Last active December 20, 2015 08:09
Show Gist options
  • Save tatuas/6098717 to your computer and use it in GitHub Desktop.
Save tatuas/6098717 to your computer and use it in GitHub Desktop.
API Level 4以降からすべて用のNotificationをただ表示するサンプル。
import android.support.v4.app.NotificationCompat;
Notification notification = new NotificationCompat.Builder(this)
.setTicker("Ticker Title")
.setContentTitle("Content Title")
.setContentText("Notification content.")
.setSmallIcon(R.drawable.ic_launcher)
.build();
notification.flags = Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(0, notification);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment