Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 初級開發 >> Android 定制android通知(Notification)

Android 定制android通知(Notification)

編輯:初級開發

Notification通知界面可以用自己定義的界面來顯示。下面是我實現的帶進度條的通知效果

下面是主要實現部分代碼,比較簡單直接看代碼可以了。

Java代碼

nf =new Notification(R.drawable.icon,"帶進度條的提醒",System.currentTimeMillis()) ;

nf.icon = R.drawable.icon;

nf.contentView= new RemoteVIEws(this.getPackageName(),R.layout.notification);

nf.contentVIEw.setProgressBar(R.id.ProgressBar01, 100, 0, false);

nf.contentIntent=PendingIntent.getActivity( this, 0, new Intent(this,remotevIEw.class) ,0);

nf =new Notification(R.drawable.icon,"帶進度條的提醒",System.currentTimeMillis()) ;

nf.icon = R.drawable.icon;

nf.contentView= new RemoteVIEws(this.getPackageName(),R.layout.notification);

nf.contentVIEw.setProgressBar(R.id.ProgressBar01, 100, 0, false);

nf.contentIntent=PendingIntent.getActivity( this, 0, new Intent(this,remotevIEw.class) ,0);

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