定制android通知(Notification)

来源:互联网 发布:linux rpm not find 编辑:程序博客网 时间:2024/05/06 14:51

Notification通知界面可以用自己定义的界面来显示。下面是我实现的带进度条的通知效果

 

下面是主要实现部分代码,比较简单直接看代码可以了。

Java代码 复制代码
  1. nf =new Notification(R.drawable.icon,"带进度条的提醒",System.currentTimeMillis()) ;   
  2. nf.icon = R.drawable.icon;   
  3.        
  4. nf.contentView= new RemoteViews(this.getPackageName(),R.layout.notification);   
  5. nf.contentView.setProgressBar(R.id.ProgressBar01, 1000false);   
  6. nf.contentIntent=PendingIntent.getActivity( this0new Intent(this,remoteview.class) ,0);