Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> 關於Android中new Notification,newnotification

關於Android中new Notification,newnotification

編輯:關於android開發

關於Android中new Notification,newnotification


目前 Android 已經不推薦使用下列方式創建 Notification實例:

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

最好采用下列方式:

                Notification notification = new Notification.Builder(this)
                    .setContentTitle("This is title")
                    .setContentText("This is content")
                    .setSmallIcon(R.drawable.ic_launcher)
                        .setTicker("This is ticker")
                        .setContentIntent(pi)
                    .build();
   

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved