トップページ > コンテンツ > その他のAPI、ライブラリ関係 > Android入門 > ポップアップ等の表示 > Notificaionの表示方法

NotificationManager nm = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Notification nf = new Notification(R.drawable.ic_launcher,"Text",System.currentTimeMillis());
nf.setLatestEventInfo(this, "Title", "Text", 
       		PendingIntent.getActivity(MainActivity.this, 0, new Intent(getApplicationContext(), MainActivity.class), 0));
nm.notify(0,nf);
最終更新:2012年11月10日 22:55