Android 为Notification加上一个进度条

简介:

代码都加了注释了,整个操作都比较简单,上代码:

 

package  com.notification;

import  android.app.Activity;
import  android.app.Notification;
import  android.app.NotificationManager;
import  android.app.PendingIntent;
import  android.content.Intent;
import  android.os.Bundle;
import  android.os.Handler;
import  android.os.Message;
import  android.view.View;
import  android.view.View.OnClickListener;
import  android.widget.Button;
import  android.widget.RemoteViews;
import  android.widget.Toast;

public   class  nofificationActivity  extends  Activity  implements  OnClickListener {

    
private   static   final   int  NOTIFICATION_ID  =   0x12 ;
    
private  Notification notification  =   null ;
    
private  NotificationManager manager  =   null ;

    
public  Handler handler;
    
private   int  _progress  =   0 ;
    
private  Thread thread  =   null ;
    
private   boolean  isStop  =   false ;

    
//  当界面处理停止的状态 时,设置让进度条取消
    @Override
    
protected   void  onPause() {
        
//  TODO Auto-generated method stub
        isStop  =   false ;
        manager.cancel(NOTIFICATION_ID);

        
super .onPause();
    }

    
/**  Called when the activity is first created.  */
    @Override
    
public   void  onCreate(Bundle savedInstanceState) {
        
super .onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Button btn 
=  (Button) findViewById(R.id.Button01);
        btn.setOnClickListener(
this );
        notification 
=   new  Notification(R.drawable.icon,  " 带进条的提醒 " , System
                .currentTimeMillis());
        notification.icon 
=  R.drawable.icon;

        
//  通过RemoteViews 设置notification中View 的属性
        notification.contentView  =   new  RemoteViews(getApplication()
                .getPackageName(), R.layout.custom_dialog);
        notification.contentView.setProgressBar(R.id.pb, 
100 0 false );
        notification.contentView.setTextViewText(R.id.tv, 
" 进度 "   +  _progress
                
+   " % " );
        
//  通过PendingIntetn
        
//  设置要跳往的Activity,这里也可以设置发送一个服务或者广播,
        
//  不过在这里的操作都必须是用户点击notification之后才触发的
        notification.contentIntent  =  PendingIntent.getActivity( this 0 ,
                
new  Intent( this , remoteView. class ),  0 );
        
//  获得一个NotificationManger 对象,此对象可以对notification做统一管理,只需要知道ID
        manager  =  (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

    }

    @Override
    
public   void  onClick(View v) {
        
//  TODO Auto-generated method stub
        isStop  =   true ;
        manager.notify(NOTIFICATION_ID, notification);
        thread 
=   new  Thread( new  Runnable() {

            @Override
            
public   void  run() {
                Thread.currentThread();
                
//  TODO Auto-generated method stub
                 while  (isStop) {
                    _progress 
+=   10 ;
                    Message msg 
=  handler.obtainMessage();
                    msg.arg1 
=  _progress;
                    msg.sendToTarget();

                    
try  {
                        Thread.sleep(
500 );
                    } 
catch  (InterruptedException e) {
                        
//  TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
            }
        });
        thread.start();

        handler 
=   new  Handler() {
            @Override
            
public   void  handleMessage(Message msg) {
                
//  TODO Auto-generated method stub
                notification.contentView.setProgressBar(R.id.pb,  100 , msg.arg1,
                        
false );
                notification.contentView.setTextViewText(R.id.tv, 
" 进度 "
                        
+  msg.arg1  +   " % " );
                manager.notify(NOTIFICATION_ID, notification);

                
if  (msg.arg1  ==   100 ) {
                    _progress 
=   0 ;
                    manager.cancel(NOTIFICATION_ID);
                    isStop 
=   false ;
                    Toast.makeText(nofificationActivity.
this " 下载完毕 " 1000 )
                            .show();
                }
                
super .handleMessage(msg);
            }
        };
    }
}

 

 本文转自 terry_龙 51CTO博客,原文链接:http://blog.51cto.com/terryblog/386042,如需转载请自行联系原作者



相关文章
|
Android开发
Android 中Notification进度条一直弹出提示及提示音
Android 中Notification进度条一直弹出提示及提示音
281 0
|
XML Android开发 数据格式
|
Android开发
Android通知Notification
一个小demo。点击 发送通知 按钮,则发送通知到设备的通知栏。点击 清除通知 则清除通知栏上的消息通知。 package zhangphil.
771 0
|
2月前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
2月前
|
缓存 前端开发 Android开发
安卓开发中的自定义视图:从零到英雄
【10月更文挑战第42天】 在安卓的世界里,自定义视图是一块画布,让开发者能够绘制出独一无二的界面体验。本文将带你走进自定义视图的大门,通过深入浅出的方式,让你从零基础到能够独立设计并实现复杂的自定义组件。我们将探索自定义视图的核心概念、实现步骤,以及如何优化你的视图以提高性能和兼容性。准备好了吗?让我们开始这段创造性的旅程吧!
38 1
|
1月前
|
搜索推荐 前端开发 API
探索安卓开发中的自定义视图:打造个性化用户界面
在安卓应用开发的广阔天地中,自定义视图是一块神奇的画布,让开发者能够突破标准控件的限制,绘制出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战技巧,逐步揭示如何在安卓平台上创建和运用自定义视图来提升用户体验。无论你是初学者还是有一定经验的开发者,这篇文章都将为你打开新的视野,让你的应用在众多同质化产品中脱颖而出。
57 19
|
2月前
|
IDE Java 开发工具
移动应用与系统:探索Android开发之旅
在这篇文章中,我们将深入探讨Android开发的各个方面,从基础知识到高级技术。我们将通过代码示例和案例分析,帮助读者更好地理解和掌握Android开发。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的信息和技巧。让我们一起开启Android开发的旅程吧!
|
1月前
|
JSON Java API
探索安卓开发:打造你的首个天气应用
在这篇技术指南中,我们将一起潜入安卓开发的海洋,学习如何从零开始构建一个简单的天气应用。通过这个实践项目,你将掌握安卓开发的核心概念、界面设计、网络编程以及数据解析等技能。无论你是初学者还是有一定基础的开发者,这篇文章都将为你提供一个清晰的路线图和实用的代码示例,帮助你在安卓开发的道路上迈出坚实的一步。让我们一起开始这段旅程,打造属于你自己的第一个安卓应用吧!
65 14
|
1月前
|
Java Linux 数据库
探索安卓开发:打造你的第一款应用
在数字时代的浪潮中,每个人都有机会成为创意的实现者。本文将带你走进安卓开发的奇妙世界,通过浅显易懂的语言和实际代码示例,引导你从零开始构建自己的第一款安卓应用。无论你是编程新手还是希望拓展技术的开发者,这篇文章都将为你打开一扇门,让你的创意和技术一起飞扬。
|
1月前
|
XML 存储 Java
探索安卓开发之旅:从新手到专家
在数字时代,掌握安卓应用开发技能是进入IT行业的关键。本文将引导读者从零基础开始,逐步深入安卓开发的世界,通过实际案例和代码示例,展示如何构建自己的第一个安卓应用。我们将探讨基本概念、开发工具设置、用户界面设计、数据处理以及发布应用的全过程。无论你是编程新手还是有一定基础的开发者,这篇文章都将为你提供宝贵的知识和技能,帮助你在安卓开发的道路上迈出坚实的步伐。
38 5