android开发之Notification学习笔记

今天总结了一下Notification的使用,与大家分享一下。

MainActivity.java:

本文参考:http://www.jb51.net/article/36567.htmhttp://www.cnblogs.com/linjiqin/archive/2011/12/14/2288074.html

public class MainActivity extends Activity {

    private Button btn;
    private NotificationManager manager;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
//      showNotification();
//      showNotification2();
//      showNotification3();
//      showNotification4();
//      showNotification5();
        showNotification6();
        this.btn = (Button) this.findViewById(R.id.button1);
        this.btn.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                clearNotification();
            }
        });
    }
    /**
     * 自定义Notification布局
     */
    private void showNotification6() {
        RemoteViews remoteViews = new RemoteViews(getPackageName(),
                R.layout.custom_notification);
        Intent intent = new Intent(this, SecondActivity.class);
        PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0,
                intent, 0);
        //点击时给SecondActivity发送一条广播
        remoteViews.setOnClickPendingIntent(R.id.paly_pause_music,
                pendingIntent);
        Intent intent1 = new Intent(this,SecondActivity.class);
        remoteViews.setOnClickPendingIntent(R.id.paly_pause_music, PendingIntent.getActivity(this, 0, intent1, 0));
        NotificationCompat.Builder builder = new Builder(this);
        builder.setContent(remoteViews).setSmallIcon(R.drawable.ic_launcher)
                .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher)).setOngoing(true)
                .setTicker("music is playing");
        manager.notify(0, builder.build());
    }
    /**
     * 大布局Picture类型notification
     * 这个方法貌似还有一点问题
     */
    private void showNotification5() {
        NotificationCompat.BigPictureStyle pictureStyle = new BigPictureStyle();
        pictureStyle.setBigContentTitle("BigContentTitle")
        .setSummaryText("Summary Text").bigPicture(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher));
        Notification notification = new NotificationCompat.Builder(this)
        .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher))
        .setTicker("showBigView_pic").setContentInfo("ContentInfo")
        .setContentTitle("ContentTitle").setContentText("ContentText")
        .setStyle(pictureStyle)
        .setAutoCancel(true).setDefaults(Notification.DEFAULT_ALL)
        .build();
        manager.notify(3, notification);
    }
    /**
     * 带进度条的通知栏
     */
    private void showNotification4() {
        final NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
        builder.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher))
        .setSmallIcon(R.drawable.ic_launcher)
        .setTicker("showProgressBar")
        .setContentInfo("ContentInfo")
        .setOngoing(true)
        .setContentTitle("ContentTitle")
        .setContentText("ContentText");
        new Thread(new Runnable() {

            @Override
            public void run() {
                int progress = 0;
                for(progress=0;progress<100;progress+=5){
                    //将第三个参数改为true,进度条会变为无明显进度的样式
                    builder.setProgress(100, progress, true);
                    manager.notify(0, builder.build());
                    try {
                        Thread.sleep(1000);
                    } catch (Exception e) {
                    }
                }
                //线程执行完毕之后,修改通知栏的显示
                builder.setContentTitle("Download complete").setProgress(0, 0, false).setOngoing(false);
                manager.notify(0, builder.build());
            }
        }).start();

    }
    /**
     * 大通知栏
     */
    private void showNotification3() {
        NotificationCompat.BigTextStyle textStyle = new BigTextStyle();
        textStyle.setBigContentTitle("BigContentTitle")
        .setSummaryText("Summary Text")
        .bigText("I‘m Big Text......................................................................");
        Notification notification = new NotificationCompat.Builder(this)
        .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher))
        .setSmallIcon(R.drawable.ic_launcher)
        .setTicker("Ticker")
        .setContentInfo("ContentInfo")
        .setContentTitle("ContentTitle")
        .setContentText("ContentText")
        .setStyle(textStyle)
        .setAutoCancel(true).setDefaults(Notification.DEFAULT_ALL).build();
        manager.notify(0, notification);
    }
    /**
     * 小通知栏
     */
    private void showNotification2() {
        Notification notification = new NotificationCompat.Builder(this)
        .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher))
        .setSmallIcon(R.drawable.ic_launcher)
        .setTicker("showNormal")
        .setContentInfo("ContextInfo")
        .setContentTitle("ContentTitle")
        .setContentText("ContentText")
        .setNumber(45)
        .setAutoCancel(true)
        .setDefaults(Notification.DEFAULT_ALL)
        .build();
        Intent notificationIntent =new Intent(MainActivity.this, SecondActivity.class);
        PendingIntent contentItent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
        notification.contentIntent=contentItent;
        manager.notify(0, notification);
    }
    /**
     * 在状态栏显示通知
     */
    private void showNotification(){
        // 创建一个NotificationManager的引用
        NotificationManager notificationManager = (NotificationManager)
            this.getSystemService(android.content.Context.NOTIFICATION_SERVICE);   

        // 定义Notification的各种属性
        Notification notification =new Notification(R.drawable.ic_launcher,
                "系统测试", System.currentTimeMillis());
        //FLAG_AUTO_CANCEL   该通知能被状态栏的清除按钮给清除掉
        //FLAG_NO_CLEAR      该通知不能被状态栏的清除按钮给清除掉
        //FLAG_ONGOING_EVENT 通知放置在正在运行
        //FLAG_INSISTENT     是否一直进行,比如音乐一直播放,知道用户响应
//        notification.flags |= Notification.FLAG_ONGOING_EVENT; // 将此通知放到通知栏的"Ongoing"即"正在运行"组中
//        notification.flags |= Notification.FLAG_NO_CLEAR; // 表明在点击了通知栏中的"清除通知"后,此通知不清除,经常与FLAG_ONGOING_EVENT一起使用
        notification.flags |= Notification.FLAG_AUTO_CANCEL;
        notification.flags |= Notification.FLAG_SHOW_LIGHTS;
        //DEFAULT_ALL     使用所有默认值,比如声音,震动,闪屏等等
        //DEFAULT_LIGHTS  使用默认闪光提示
        //DEFAULT_SOUNDS  使用默认提示声音
        //DEFAULT_VIBRATE 使用默认手机震动,需加上<uses-permission android:name="android.permission.VIBRATE" />权限
        notification.defaults = Notification.DEFAULT_LIGHTS;
        //叠加效果常量
        //notification.defaults=Notification.DEFAULT_LIGHTS|Notification.DEFAULT_SOUND;
        notification.ledARGB = Color.BLUE;
        notification.ledOnMS =5000; //闪光时间,毫秒

        // 设置通知的事件消息
        CharSequence contentTitle ="系统消息"; // 通知栏标题
        CharSequence contentText ="系统正在运行...."; // 通知栏内容
        Intent notificationIntent =new Intent(MainActivity.this, SecondActivity.class); // 点击该通知后要跳转的Activity
        PendingIntent contentItent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
        notification.setLatestEventInfo(this, contentTitle, contentText, contentItent);   

        // 把Notification传递给NotificationManager
        notificationManager.notify(0, notification);
    }
    //删除通知
    private void clearNotification(){
        // 启动后删除之前我们定义的通知
        NotificationManager notificationManager = (NotificationManager) this
                .getSystemService(NOTIFICATION_SERVICE);
        notificationManager.cancel(0);  

    }
}

关键代码文中已有注释,完整代码下载。如有错误之后欢迎大家一起讨论。

版权声明:本文为博主原创文章,未经博主允许不得转载。若有错误地方,还望批评指正,不胜感激。

时间: 2024-10-26 06:49:33

android开发之Notification学习笔记的相关文章

android开发之broadcast学习笔记

android中的广播用的太多了,今天稍微总结一下. 按注册方式分为两种: 1.静态注册广播: 静态注册广播就是在androidManifest.xml文件中注册广播,假设我们要实现这样一个效果,在一个activity上点击按钮,发送一条广播,这条广播弹出一个toast,显示"静态"二字. 先看看广播接受者: public class MyBroadcast extends BroadcastReceiver { @Override public void onReceive(Cont

android开发之notification通知完全解析

android开发之notification通知完全解析 本文主要介绍的是notification通知的使用,通过阅读此文,你可以了解,在android开发中,notification通知各种使用方法.本文的notification主要是针对android4.4以下的版本. 现在,我们来看一下,如何实现一个notification.估计大家现在最常用的做法是下面这种: Notification notification = new Notification(R.drawable.ic_launc

Android开发之Notification

Android Notification在每一个Android应用开发中基本都会遇到,它可以按指定的规则向用户推送一些消息,是一项非常实用的功能.本文主要介绍了Android Notification 用法的4种形式,希望可以对各位Android开发者有所帮助. 实现通知一般有以下几个步骤: 1.获取通知服务对象NotificationManager 2.建立Notification对象 3.关联intent 4.执行通知 Notification一般有几种用途:,如下图 1.启动多次通知但只显

Swift网络开发之NSURLSession学习笔记

先上效果图:        功能: -单个任务下载 -暂停下载任务 -取消下载任务 -断点下载 -显示下载进度及速度 -多任务下载 -分别控制各个任务 在如今移动互联网的浪潮中,手机APP越来越依赖网络通讯来交互数据.今天我们就来分享下如何通过使用NSURLSession这个Apple官方提供的网络接口实现文件下载的思路. NSURLSsession 先来介绍下NSURLSession这个接口.NSURLSession是苹果在WWDC2013上推出的用于替代它的前辈NSURLConnection

Cocos2d-x游戏开发之Lua学习笔记

下载链接 什么是Cocos2d-x 一个开源的移动2D游戏框架,MIT许可证下发布. 可以利用C++.Lua及Javascript来进行部署. 跨平台:iOS,Android,Blackberry,Tizen等. 使用Cocos开发的应用 版权声明:本文原创,转载请注明出处:http://blog.csdn.net/zhoumushui

Android开发之Notification通知

消息通知使我们很常见的,当收到一条消息的时候,通知栏会显示一条通知: 直接看代码: 1 public class MainActivity extends Activity { 2 3 private NotificationManager nm; 4 @Override 5 protected void onCreate(Bundle savedInstanceState) { 6 super.onCreate(savedInstanceState); 7 setContentView(R.l

Android开发之xUtils学习

1.一个非作者弄的xUtils API文档: http://xutilsapi.oschina.mopaas.com/overview-summary.html 2.使用xUtils用户的一些博客文档: xUtils – 注解的使用和说明--http://abug.aliapp.com/?p=78 xUtils – HttpUtils的使用(一)--http://abug.aliapp.com/?p=61 xUtils – HttpUtils的使用(二)--http://abug.aliapp.

Android开发之Fragment详解

Android开发之Fragment学习 1.简介: Fragment是Android 3.0引入的新API. Fragment代表了 Activity的子模块,因此可以把Fragment理解成Activity片段.Fragment用于自己的生命周期,也可以接受它自己的输入事件. Fragment必须被"嵌入" Activity中使用,因此虽然Fragment也拥有自己的生命周期,但Fragment的生命周期会受它所在的Activity的生命周期的控制.例如,当Activity暂停时,

android开发之MediaPlayer+Service MP3播放器

http://blog.csdn.net/zzy916853616/article/details/6450753 [java] view plaincopy import java.io.File; import java.io.FilenameFilter; import java.util.ArrayList; import java.util.List; import android.app.ListActivity; import android.apps.service.Player