安卓顯示通知 ...
安卓顯示通知
PendingIntent pendingIntent=PendingIntent.getActivity(Media.this,0, new Intent(Media.this,Media.class),0); NotificationManager manager= (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); Notification notification=new Notification.Builder(Media.this).setSmallIcon(R.drawable.icon) .setTicker("Ticker Text"+"您有新消息,請註意查收") .setContentTitle("通知標題") .setContentText("通知內容") .setContentIntent(pendingIntent) .setNumber(1)//在TextView的右方顯示的數字,可放大圖片看,在最右側。 // 這個number同時也起到一個序列號的左右,如果多個觸發多個通知(同一ID),可以指定顯示哪一個 .build(); //任然可以使用 不用管 //當用戶點擊通知時 通知清除 notification.flags=Notification.FLAG_AUTO_CANCEL; //通過通知管理器發起通知 manager.notify(1,notification);