您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關Notification怎么在Android中使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
用法
首先我們需要一個NotificationManager來對通知進行管理,可以調用getSystemService()方法得到,方法接收一個字符串參數用于確定獲取系統的哪個服務,這里我們傳入NOTIFICATION_SERVICE。
NotificationManager manager=(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
接下來用一個Builder構造器來創建Notification對象
Intent intent=new Intent(this,NotificationActivity.class); //用intent表現出我們要啟動Notification的意圖 PendingIntent pi=PendingIntent.getActivity(this,0,intent,0); //將Intent對象傳入PendingIntent對象的getActivity方法中 NotificationManager manager=(NotificationManager) getSystemService(NOTIFICATION_SERVICE); Notification notification=new NotificationCompat.Builder(this) .setContentTitle("This is content title") //設置通知欄中的標題 .setContentText("hello world!") //設置通知欄中的內容 .setWhen(System.currentTimeMillis()) //設置通知出現的時間,此時為事件響應后立馬出現通知 .setSmallIcon(R.mipmap.ic_launcher) //設置通知出現在手機頂部的小圖標 .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher)) //設置通知欄中的大圖標 .setContentIntent(pi) //將PendingIntent對象傳入該方法中,表明點擊通知后進入到NotificationActivity.class頁面 .setAutoCancel(true) //點擊通知后,通知自動消失 .setDefaults(NotificationCompat.DEFAULT_ALL) //默認選項,根據手機當前的環境來決定通知發出時播放的鈴聲,震動,以及閃光燈 .setPriority(NotificationCompat.PRIORITY_MAX) //設置通知的權重 .build(); manager.notify(1,notification); //用于顯示通知,第一個參數為id,每個通知的id都必須不同。第二個參數為具體的通知對象
上述就是小編為大家分享的Notification怎么在Android中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。