溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中使用Notification實(shí)現(xiàn)狀態(tài)欄的通知

發(fā)布時(shí)間:2020-10-07 21:25:01 來源:腳本之家 閱讀:130 作者:甄情 欄目:移動(dòng)開發(fā)

在使用手機(jī)時(shí),當(dāng)有未接來電或者新短消息時(shí),手機(jī)會給出響應(yīng)的提示信息,這些提示信息通常會顯示到手機(jī)屏幕的狀態(tài)欄上。

Android也提供了用于處理這些信息的類,它們是Notification和NotificationManager。其中,Notification代表的是具有全局效果的通知,而NotificationManager則是用于發(fā)送Notification通知的系統(tǒng)服務(wù)。

使用Notification和NotificationManager類發(fā)送和顯示通知也比較簡單,大致可以分為以下四個(gè)步驟

(1)調(diào)用getSystemService() 方法獲取系統(tǒng)的NotificationManager服務(wù)

(2)創(chuàng)建一個(gè)Notification對象,并為其設(shè)置各種屬性

(3)為Notification對象設(shè)置事件信息

(4)通過NotificationManager類的notify()方法發(fā)送Notification通知

下面通過一個(gè)實(shí)例說明和使用Notification在狀態(tài)欄上顯示通知

國際慣例

運(yùn)行結(jié)果:

Android中使用Notification實(shí)現(xiàn)狀態(tài)欄的通知

布局文件就不發(fā)了 線性垂直布局 兩個(gè)按鈕

MainActivity.class

package com.example.notification; 
import android.os.Bundle; 
import android.app.Activity; 
import android.app.Notification; 
import android.app.Notification.Builder; 
import android.app.NotificationManager; 
import android.app.PendingIntent; 
import android.content.Context; 
import android.content.Intent; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
public class MainActivity extends Activity implements OnClickListener{ 
 private NotificationManager manager; 
 private Button button1; 
 private Button button2; 
 private int Notification_ID; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 setContentView(R.layout.activity_main); 
 manager=(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
 button1=(Button) findViewById(R.id.button1); 
 button2=(Button) findViewById(R.id.button2); 
 button1.setOnClickListener(this); 
 button2.setOnClickListener(this); 
 } 
 @Override 
 public void onClick(View v) { 
 // TODO Auto-generated method stub 
 switch(v.getId()){ 
 case R.id.button1:{ 
 showNotification(); 
 break; 
 } 
 case R.id.button2:{ 
 manager.cancel(Notification_ID); 
 break; 
 } 
 } 
 } 
 private void showNotification() { 
 // TODO Auto-generated method stub 
 Notification.Builder builder=new Builder(this); 
 builder.setSmallIcon(R.drawable.ic_launcher);//設(shè)置圖標(biāo) 
 builder.setTicker("通知來啦");//手機(jī)狀態(tài)欄的提示 
 builder.setContentTitle("我是通知標(biāo)題");//設(shè)置標(biāo)題 
 builder.setContentText("我是通知內(nèi)容");//設(shè)置通知內(nèi)容 
 builder.setWhen(System.currentTimeMillis());//設(shè)置通知時(shí)間 
 Intent intent=new Intent(this,MainActivity.class); 
 PendingIntent pendingIntent=PendingIntent.getActivity(this, 0, intent, 0); 
 builder.setContentIntent(pendingIntent);//點(diǎn)擊后的意圖 
 builder.setDefaults(Notification.DEFAULT_LIGHTS);//設(shè)置指示燈 
 builder.setDefaults(Notification.DEFAULT_SOUND);//設(shè)置提示聲音 
 builder.setDefaults(Notification.DEFAULT_VIBRATE);//設(shè)置震動(dòng) 
 Notification notification=builder.build();//4.1以上,以下要用getNotification() 
 manager.notify(Notification_ID, notification); 
 } 
} 

上面代碼中設(shè)置的指示燈和震動(dòng),由于程序中要訪問系統(tǒng)的指示燈和振動(dòng)器 所以要在AndroidManifest.xml中聲明使用權(quán)限

<uses-permission android:name="android.permission.VIBRATE" /> 
<uses-permission android:name="android.permission.FLASHLIGHT" /> 

以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持億速云!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI