安卓中通知(Notification)的基本使用方法

來源:互聯網
上載者:User

標籤:

1. 通知的使用場合

當某個應用程式希望向使用者發出一些提示資訊,而該應用程式又不在前台運行時,就可以藉助通知來實現。發出一條通知後,手機最上方的狀態列中會顯示一個通知的表徵圖,下拉狀態列後可以看到通知的詳細內容。

 

2. 通知的建立步驟

  (1)擷取NotificationManager執行個體,可以通過調用Conten的getSystenService()方法得到,getSystemService()方法接收一個字串參數用於確定擷取系統的哪個服務, 這裡我們傳入Context.NOTIFICATION_SERVICE 即可。擷取NotificationManager執行個體如下:

NotificationManager manager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

 

  (2)建立Notification對象,該對象用於儲存通知的各種所需資訊,我們可以使用它的有參建構函式來建立。建構函式有三個參數,第一個參數指定通知表徵圖,第二個參數用於指定通知的ticker 內容,當通知剛被建立的時候,它會在系統的狀態列一閃而過,屬於一種瞬時的提示資訊。第三個參數用於指定通知被建立的時間,以毫秒為單位,當下拉系統狀態列時,這裡指定的時間會顯示在相應的通知上。建立一個Notification 對象可以寫成:

  Notification notification = new Notification(R.drawable.ic_launcher,"This is a ticker text",System.currentTimeMillis());

 

  (3)調用Notification的setLatestEventIfo()方法對通知的布局進行設定,這個方法接收四個參數,第一個參數是Context。第二個參數用於指定通知的標題內容,下拉系統狀態列就可以看到這部分內容。第三個參數用於指定通知的本文內容,同樣下拉系統狀態列就可以看到這部分內容。第四個參數用於指定實現通知點擊事件的PendingIntent對象,如果暫時用不到可以先傳入null。因此,對通知的布局進行設定就可以寫成:

notification.setLatestEventInfo(context, "This is content title", "This iscontent text", null);

 

  (4)調用NotificationManager的notify()方法顯示通知。notify()方法接收兩個參數,第一個參數是id,要保證為每個通知所指定的id 都是不同的。第二個參數則是Notification 對象,這裡直接將我們剛剛建立好的Notification 對象傳入即可。顯示一個通知就可以寫成:

manager.notify(1, notification);

 

3.程式碼範例

public class MainActivity extends Activity implements OnClickListener {    private Button sendNotice;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        sendNotice = (Button) findViewById(R.id.send_notice);        sendNotice.setOnClickListener(this);    }    @Override    public void onClick(View view) {        switch (view.getId()) {            case R.id.send_notice:                NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);                Notification notification = new Notification(                        R.drawable.ic_launcher, "This is a ticker text", System.currentTimeMillis());                                notification.setLatestEventInfo(this, "This is content title",                        "This is content text", null);                manager.notify(1, notification);            default:                break;        }    }}


另外,我在開發完APP都會用一些APP線上自動化測試載入器進行測試:www.ineice.com


安卓中通知(Notification)的基本使用方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.