Android编程实现通知栏进度条效果的方法示例

本文实例讲述了Android编程实现通知栏进度条效果的方法。分享给大家供大家参考,具体如下:

/**
 * 通知管理工具类
 *
 * @description:
 * @author ldm
 * @date 2016-5-3 上午9:39:56
 */
public class NotificationUtil {
  private Context mContext;
  // NotificationManager : 是状态栏通知的管理类,负责发通知、清楚通知等。
  private NotificationManager manager;
  // 定义Map来保存Notification对象
  private Map<Integer, Notification> map = null;
  public NotificationUtil(Context context) {
    this.mContext = context;
    // NotificationManager 是一个系统Service,必须通过 getSystemService()方法来获取。
    manager = (NotificationManager) mContext
        .getSystemService(Context.NOTIFICATION_SERVICE);
    map = new HashMap<Integer, Notification>();
  }
  public void showNotification(int notificationId) {
    // 判断对应id的Notification是否已经显示, 以免同一个Notification出现多次
    if (!map.containsKey(notificationId)) {
      // 创建通知对象
      Notification notification = new Notification();
      // 设置通知栏滚动显示文字
      notification.tickerText = "开始下载xx文件";
      // 设置显示时间
      notification.when = System.currentTimeMillis();
      // 设置通知显示的图标
      notification.icon = R.drawable.ic_launcher;
      // 设置通知的特性: 通知被点击后,自动消失
      notification.flags = Notification.FLAG_AUTO_CANCEL;
      // 设置点击通知栏操作
      Intent in = new Intent(mContext, MainActivity.class);// 点击跳转到指定页面
      PendingIntent pIntent = PendingIntent.getActivity(mContext, 0, in,
          0);
      notification.contentIntent = pIntent;
      // 设置通知的显示视图
      RemoteViews remoteViews = new RemoteViews(
          mContext.getPackageName(),
          R.layout.notification_contentview);
      // 设置暂停按钮的点击事件
      Intent pause = new Intent(mContext, MainActivity.class);// 设置跳转到对应界面
      PendingIntent pauseIn = PendingIntent.getActivity(mContext, 0, in,
          0);
      // 这里可以通过Bundle等传递参数
      remoteViews.setOnClickPendingIntent(R.id.pause, pauseIn);
      /********** 简单分隔 **************************/
      // 设置取消按钮的点击事件
      Intent stop = new Intent(mContext, MainActivity.class);// 设置跳转到对应界面
      PendingIntent stopIn = PendingIntent
          .getActivity(mContext, 0, in, 0);
      // 这里可以通过Bundle等传递参数
      remoteViews.setOnClickPendingIntent(R.id.cancel, stopIn);
      // 设置通知的显示视图
      notification.contentView = remoteViews;
      // 发出通知
      manager.notify(notificationId, notification);
      map.put(notificationId, notification);// 存入Map中
    }
  }
  /**
   * 取消通知操作
   *
   * @description:
   * @author ldm
   * @date 2016-5-3 上午9:32:47
   */
  public void cancel(int notificationId) {
    manager.cancel(notificationId);
    map.remove(notificationId);
  }
  public void updateProgress(int notificationId, int progress) {
    Notification notify = map.get(notificationId);
    if (null != notify) {
      // 修改进度条
      notify.contentView.setProgressBar(R.id.pBar, 100, progress, false);
      manager.notify(notificationId, notify);
    }
  }
}

布局文件notification_contentview.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >
  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="通知栏下载测试" />
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="horizontal" >
    <ProgressBar
      android:id="@+id/pBar"
      style="@android:style/Widget.ProgressBar.Horizontal"
      android:layout_width="match_parent"
      android:layout_height="4dp"
      android:layout_weight="1" />
    <Button
      android:id="@+id/pause"
      android:layout_width="match_parent"
      android:layout_height="30dp"
      android:layout_weight="2"
      android:text="暂停" />
    <Button
      android:id="@+id/cancel"
      android:layout_width="match_parent"
      android:layout_height="30dp"
      android:layout_weight="2"
      android:text="取消" />
  </LinearLayout>
</LinearLayout>

Activity中简单测试发通知,项目中根据需要使用,比如文件下载中要更新进度,取消时进行对应操作等。

/**
 * Notification是Android项目中具体的状态栏通知对象,可以设置icon、文字、提示声音、振动等等参数。
 * 常用属性:
 * icon:设置通知上显示的图标
 * tickerText:设置通知中滚动显示的文字
 * text:设置通知的内容
 * flags:设置通知的特性
 * defaults:设置通知默认效果
 * when:设置通知显示的时间
 * contentView:设置通知显示的内容视图
 * sound:设置通知的声音
 * contentIntent:设置点击通知时的跳转等操作
 */
/**
 * 在通知栏中实现下载进度条样式展示Demo
 *
 * @description:
 * @author ldm
 * @date 2016-5-3 上午8:40:37
 */
public class MainActivity extends ActionBarActivity {
  private NotificationUtil mNotificationUtil;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mNotificationUtil = new NotificationUtil(this);
    findViewById(R.id.send).setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        mNotificationUtil.showNotification(100);// 测试发出通知
      }
    });
  }
}

Android通知功能可以参考前面一篇http://www.jb51.net/article/85807.htm

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。

您可能感兴趣的文章:

  • android项目实现带进度条的系统通知栏消息
  • android实现通知栏下载更新app示例
  • Android开发之禁止下拉通知栏的方法
  • Android程序版本更新之通知栏更新下载安装
  • Android实现通知栏透明的方法
  • Android消息通知栏的实现方法介绍
  • 关于Android中点击通知栏的通知启动Activity问题解决
  • Android编程实现显示在标题上的进度条功能【附源码下载】
  • Android 七种进度条的样式
  • Android中实现Webview顶部带进度条的方法
  • android自定义进度条渐变色View的实例代码
(0)

相关推荐

  • Android编程实现显示在标题上的进度条功能【附源码下载】

    本文实例讲述了Android编程实现显示在标题上的进度条功能.分享给大家供大家参考,具体如下: 今天我们来学习一下Android中显示在Activity标题上的进度条.在这个例子当中我们还能够学习到很多关于AsyncTask的知识. (1)准备用于显示到界面上的四张图片img01,img02,img03,img04 (2)在Activity的布局文件activity_main.xml中只定义一个线性布局LinearLayout,并为其设置一个id,代码如下: <LinearLayout xmln

  • android自定义进度条渐变色View的实例代码

    最近在公司,项目不是很忙了,偶尔看见一个兄台在CSDN求助,帮忙要一个自定义的渐变色进度条,我当时看了一下进度条,感觉挺漂亮的,就尝试的去自定义view实现了一个,废话不说,先上图吧! 这个自定义的view,完全脱离了android自带的ProgressView,并且没使用一张图片,这样就能更好的降低程序代码上的耦合性! 下面我贴出代码  ,大概讲解一下实现思路吧! 复制代码 代码如下: package com.spring.progressview; import android.conten

  • Android程序版本更新之通知栏更新下载安装

    Android应用检查版本更新后,在通知栏下载,更新下载进度,下载完成自动安装,效果图如下: •检查当前版本号 AndroidManifest文件中的versionCode用来标识版本,在服务器放一个新版本的apk,versioncode大于当前版本,下面代码用来获取versioncode的值 PackageInfo packageInfo = context.getPackageManager().getPackageInfo(context.getPackageName(), 0); int

  • Android中实现Webview顶部带进度条的方法

    写这篇文章,做份备忘,简单滴展示一个带进度条的Webview示例,进度条位于Webview上面. 示例图如下: 主Activity代码: 复制代码 代码如下: package com.droidyue.demo.webviewprogressbar; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.View; import android.vi

  • Android消息通知栏的实现方法介绍

    背景知识:可以用Activity和Service来开始消息通知,两者的区别在于一个是在前台触发,一个是后台服务触发.要使用消息通知,必须要用到两个类:NotificationManager和Notification,其他NotificationManager的初始化是用getSystemService方法,并且通过notify方法来向android系统发送消息栏通知和显示.效果 :代码: 复制代码 代码如下: //消息通知栏        //定义NotificationManager     

  • Android 七种进度条的样式

    当一个应用在后台执行时,前台界面就不会有什么信息,这时用户根本不知道程序是否在执行.执行进度如何.应用程序是否遇到错误终止等,这时需要使用进度条来提示用户后台程序执行的进度.Android系统提供了两大类进度条样式,长形进度条(progress-BarStyleHorizontal) 和圆形进度条(progressBarStyleLarge).进度条用处很多,比如,应用程序装载资源和网络连接时,可以提示用户稍等,这一类进度条只是代表应用程序中某一部分的执行情况,而整个应用程序执行情况呢,则可以通

  • Android开发之禁止下拉通知栏的方法

    本文实例讲述了Android开发之禁止下拉通知栏的方法.分享给大家供大家参考,具体如下: 1.在AndroidManifest.xml中添加权限 <uses-permission android:name="android.permission.EXPAND_STATUS_BAR"/> <uses-permission android:name="android.permission.STATUS_BAR"/> 2.在相应的activity中

  • 关于Android中点击通知栏的通知启动Activity问题解决

    前言 最近遇到一个很奇葩的问题,终于解决了,所以想着记录一下,方便大家或者自己以后有需要的时候可以参考学习. 问题场景 用小米手机使用小米推送一条消息,然后点击通知栏中的消息启动应用,然后进入会话的Activity.应用启动后,如果当前界面不是会话界面,那么新消息会在通知栏显示消息提醒,然后点击会话消息后却进不了会话的Activity,即点击了通知栏通知后,系统都没有启动指定Activity的意思,没有看到系统启动Activity的Log,到是会看到系统处理这个Activity的影子. 这个指定

  • android实现通知栏下载更新app示例

    1.设计思路,使用VersionCode定义为版本升级参数.android为我们定义版本提供了2个属性: 复制代码 代码如下: <manifest package="com.cnblogs.tianxia.subway"android:versionCode="1" <!--Integer类型,系统不显示给用户-->android:versionName="1.0"<!--String类型,系统显示用户-->>

  • android项目实现带进度条的系统通知栏消息

    我们在做Android开发的时候经常会遇到后台线程执行的比如说下载文件的时候,这个时候我们希望让客户能看到后台有操作进行,这时候我们就可以使用进度条,那么既然在后台运行,为的就是尽量不占用当前操作空间,用户可能还要进行其他操作,最好的方法就是在通知栏有个通知消息并且有个进度条.本文给一个例子工读者参考. 效果图如下: 主界面只有一个按钮就不上文件了 通知栏显示所用到的布局文件content_view.xml <?xml version="1.0" encoding="u

  • Android实现通知栏透明的方法

    这个特性是andorid4.4支持的,最少要api19才可以使用,也就是说如果Android的机子是低于4.4,沉浸通知栏是没有效果的.下面介绍一下使用的方法,非常得简单. /** * 设置通知栏 这个方法在onCreate()实现,如果是在父类的onCreate()中添加,即使所有继承了该父类都会有沉浸通知栏. */ public void initSystemBar() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

随机推荐