Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 590|回复: 0

Android状态栏提醒(Notification、NotificationManager)-  An

[复制链接]

该用户从未签到

发表于 2011-10-24 15:05:41 | 显示全部楼层 |阅读模式
package com.yarin.android.Examples_04_23;

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.view.View;

import android.widget.Button;

public class Activity01 extends Activity

{

       Button    m_Button1, m_Button2, m_Button3, m_Button4;

       //声明通知(消息)管理器

       NotificationManager      m_NotificationManager;

       Intent                           m_Intent;

       PendingIntent        m_PendingIntent;

       //声明Notification对象

       Notification           m_Notification;

       /** Called when the activity is first created. */

       @Override

       public void onCreate(Bundle savedInstanceState)

       {

              super.onCreate(savedInstanceState);

              setContentView(R.layout.main);

              //初始化NotificationManager对象

              m_NotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

              //获取4个按钮对象

              m_Button1 = (Button) findViewById(R.id.Button01);

              m_Button2 = (Button) findViewById(R.id.Button02);

              m_Button3 = (Button) findViewById(R.id.Button03);

              m_Button4 = (Button) findViewById(R.id.Button04);

              //点击通知时转移内容

              m_Intent = new Intent(Activity01.this, Activity02.class);

              //主要是设置点击通知时显示内容的类

              m_PendingIntent = PendingIntent.getActivity(Activity01.this, 0, m_Intent, 0);

              //构造Notification对象

              m_Notification = new Notification();

              m_Button1.setOnClickListener(new Button.OnClickListener() {

                     public void onClick(View v)

                     {

                            //设置通知在状态栏显示的图标

                            m_Notification.icon = R.drawable.img1;

                            //当我们点击通知时显示的内容

                            m_Notification.tickerText = "Button1通知内容...........";

                            //通知时发出默认的声音

                            m_Notification.defaults = Notification.DEFAULT_SOUND;

                            //设置通知显示的参数

                            m_Notification.setLatestEventInfo(Activity01.this, "Button1", "Button1通知", m_PendingIntent);

                            //可以理解为执行这个通知

                            m_NotificationManager.notify(0, m_Notification);

                     }

              });

              m_Button2.setOnClickListener(new Button.OnClickListener() {

                     public void onClick(View v)

                     {

                            m_Notification.icon = R.drawable.img2;

                            m_Notification.tickerText = "Button2通知内容...........";

                            //通知时震动

                            m_Notification.defaults = Notification.DEFAULT_VIBRATE;

                            m_Notification.setLatestEventInfo(Activity01.this, "Button2", "Button2通知", m_PendingIntent);

                            m_NotificationManager.notify(0, m_Notification);

                     }

              });

              m_Button3.setOnClickListener(new Button.OnClickListener() {

                     public void onClick(View v)

                     {

                            m_Notification.icon = R.drawable.img3;

                            m_Notification.tickerText = "Button3通知内容...........";

                            //通知时屏幕发亮

                            m_Notification.defaults = Notification.DEFAULT_LIGHTS;

                            m_Notification.setLatestEventInfo(Activity01.this, "Button3", "Button3通知", m_PendingIntent);

                            m_NotificationManager.notify(0, m_Notification);

                     }

              });

              m_Button4.setOnClickListener(new Button.OnClickListener() {

                     public void onClick(View v)

                     {

                            m_Notification.icon = R.drawable.img4;

                            m_Notification.tickerText = "Button4通知内容..........";

                            //通知时既震动又屏幕发亮还有默认的声音

                            m_Notification.defaults = Notification.DEFAULT_ALL;

                            m_Notification.setLatestEventInfo(Activity01.this, "Button4", "Button4通知", m_PendingIntent);

                            m_NotificationManager.notify(0, m_Notification);

                     }

              });

       }

}
复制代码
回复

使用道具 举报

该用户从未签到

发表于 2011-10-24 15:05:48 | 显示全部楼层

Re:Android状态栏提醒(Notification、NotificationManager

支持楼主
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-11 14:23 , Processed in 0.304961 second(s), 34 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表