详解Android中Notification通知提醒

在消息通知时,我们经常用到两个组件Toast和Notification。特别是重要的和需要长时间显示的信息,用Notification就最 合适不过了。当有消息通知时,状态栏会显示通知的图标和文字,通过下拉状态栏,就可以看到通知信息了,Android这一创新性的UI组件赢得了用户的一 致好评,就连苹果也开始模仿了。今天我们就结合实例,探讨一下Notification具体的使用方法。  首先说明一下我们需要实现的功能是:在程序启动时,发出一个通知,这个通知在软件运行过程中一直存在,相当于qq的托盘一样。

然后再演示一下普通的通知和自定义视图通知, 那我们就先建立一个安卓项目。

然后编辑/res/layout/main.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:background="@android:color/black" android:orientation="vertical" > <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:text="@string/title" android:textColor="#0f0" android:textSize="20sp" android:textStyle="bold" /> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="50dp" android:layout_marginRight="50dp" android:layout_marginTop="30dp" android:onClick="normal" android:text="@string/notification" android:textColor="#0f0" android:textSize="20sp" /> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="50dp" android:layout_marginRight="50dp" android:layout_marginTop="30dp" android:onClick="custom" android:text="@string/custom" android:textColor="#0f0" android:textSize="20sp" /> </LinearLayout>

上面的布局很简单,有两个按钮分别用于启动普通的notification和自定义的notification。
接下来自定义一个布局用于显示自定义的通知的。

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#000" android:orientation="vertical" > <ImageView android:id="@+id/iv" android:layout_width="match_parent" android:layout_height="wrap_content" android:contentDescription="@string/action_settings" android:src="@drawable/ic_launcher" /> <TextView android:id="@+id/tv" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:textColor="#0f0" android:textSize="15sp" /> </LinearLayout>

接下来就是上代码。

package com.itfom.notification; import android.app.Activity; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.os.Environment; import android.view.View; import android.widget.RemoteViews; public class MainActivity extends Activity { private NotificationManager mNotificationManager; private Context context; private Notification notification; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } //普通的通知 @SuppressWarnings("deprecation") public void normal(View v){ //创建通知 createNotification("普通的通知"); //把通知放在正在运行栏目中 notification.flags|=Notification.FLAG_ONGOING_EVENT; //设定默认声音 notification.defaults|=Notification.DEFAULT_SOUND; //设定默认震动 notification.defaults|=Notification.DEFAULT_VIBRATE; //设定默认LED灯提醒 notification.defaults|=Notification.DEFAULT_LIGHTS; //设置点击后通知自动清除 notification.defaults|=Notification.FLAG_AUTO_CANCEL; String textTitle="Notification示例"; String textContent="程序正在运行,点击此处跳转到演示界面"; Intent it=new Intent(context, MainActivity.class); PendingIntent pendintent=PendingIntent.getActivity(context, 0, it, 0); notification.setLatestEventInfo(context, textTitle, textContent, pendintent); mNotificationManager.notify(0, notification); } //自定义的通知 public void custom(View v){ //创建通知 createNotification("个性化的通知"); //自定义通知的声音 notification.sound=Uri.parse(Environment.getExternalStorageDirectory()+"/non.mp3"); //自定义震动参数分别为多长时间开始震动、第一次震动的时间、停止震动的时间 long[] vibrate={0,100,200,300}; notification.vibrate=vibrate; //自定义闪光灯的方式 notification.ledARGB=0xff00ff00; notification.ledOnMS=500; notification.ledOffMS=500; notification.flags|=Notification.FLAG_SHOW_LIGHTS; RemoteViews contentView=new RemoteViews(this.getPackageName(),R.layout.notify); contentView.setTextViewText(R.id.tv, "这是个性化的通知"); //指定个性化的视图 notification.contentView=contentView; Intent it=new Intent(context, MainActivity.class); PendingIntent pendintent=PendingIntent.getActivity(context, 0, it, 0); //指定内容视图 notification.contentIntent=pendintent; mNotificationManager.notify(1, notification); } //自定义一个方法创建通知 @SuppressWarnings("deprecation") public Notification createNotification(String text){ context = this; mNotificationManager=(NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE); int icon=R.drawable.ic_launcher; long when=System.currentTimeMillis(); return notification = new Notification(icon, text, when); } //重写onBackpressed事件 @Override public void onBackPressed() { super.onBackPressed(); finish(); //取消通知 mNotificationManager.cancel(0); android.os.Process.killProcess(android.os.Process.myPid()); System.exit(0); } }

上面的代码我们定义了一个方法createNotification(String text).该方法是用于创建一个通知。注意之所以这样写是因为。不管是普通的通知还是自定义的通知。前面的创建过程都是一样的。然后我们实现了两个按钮的点击事件。
运行结果如下所示:

当点击两个按钮时会出现以下的情况:

注 :这里是有声音效果的。如果手机支持闪光,还有LED效果。

以上就是关于Android中Notification通知提醒实现的过程详解,最近更新了许多关于Android中Notification通知提醒的文章,希望对大家的学习有所帮助。

时间: 2024-09-14 15:18:46

详解Android中Notification通知提醒的相关文章

详解Android中Notification通知提醒_Android

在消息通知时,我们经常用到两个组件Toast和Notification.特别是重要的和需要长时间显示的信息,用Notification就最 合适不过了.当有消息通知时,状态栏会显示通知的图标和文字,通过下拉状态栏,就可以看到通知信息了,Android这一创新性的UI组件赢得了用户的一 致好评,就连苹果也开始模仿了.今天我们就结合实例,探讨一下Notification具体的使用方法.  首先说明一下我们需要实现的功能是:在程序启动时,发出一个通知,这个通知在软件运行过程中一直存在,相当于qq的托盘

详解Android中Notification的使用方法_Android

      在消息通知的时候,我们经常用到两个控件Notification和Toast.特别是重要的和需要长时间显示的信息,用Notification最合适不过了.他可以在顶部显示一个图标以标示有了新的通知,当我们拉下通知栏的时候,可以看到详细的通知内容.       最典型的应用就是未看短信和未接来电的显示,还有QQ微信,我们一看就知道有一个未接来电或者未看短信,收到QQ离线信息.同样,我们也可以自定义一个Notification来定义我们自己的程序想要传达的信息. Notification我

详解Android中Intent对象与Intent Filter过滤匹配过程_Android

如果对Intent不是特别了解,可以参见博文<详解Android中Intent的使用方法>,该文对本文要使用的action.category以及data都进行了详细介绍.如果想了解在开发中常见Intent的使用,可以参见<Android中Intent习惯用法>. 本文内容有点长,希望大家可以耐心读完. 本文在描述组件在manifest中注册的Intent Filter过滤器时,统一用intent-filter表示. 一.概述 我们知道,Intent是分两种的:显式Intent和隐式

详解Android中Handler的内部实现原理_Android

本文主要是对Handler和消息循环的实现原理进行源码分析,如果不熟悉Handler可以参见博文<详解Android中Handler的使用方法>,里面对Android为何以引入Handler机制以及如何使用Handler做了讲解. 概括来说,Handler是Android中引入的一种让开发者参与处理线程中消息循环的机制.我们在使用Handler的时候与Message打交道最多,Message是Hanlder机制向开发人员暴露出来的相关类,可以通过Message类完成大部分操作Handler的功

详解Android中的Service

Service简介: Service是被设计用来在后台执行一些需要长时间运行的操作. Android由于允许Service在后台运行,甚至在结束Activity后,因此相对来说,Service相比Activity拥有更高的优先级. 创建Service: 要创建一个最基本的Service,需要完成以下工作:1)创建一个Java类,并让其继承Service 2)重写onCreate()和onBind()方法 其中,onCreate()方法是当该Service被创建时执行的方法,onBind()是该S

详解 Android中Libgdx使用ShapeRenderer自定义Actor解决无法接收到Touch事件的问题

详解 Android中Libgdx使用ShapeRenderer自定义Actor解决无法接收到Touch事件的问题 今天在项目中实现了一个效果,主要是画一个圆.为了后续使用方便,将这个圆封装在一个自定义Actor(CircleActot)中,后续想显示一个圆的时候,只要创建一个CircleActor中即可. 部分代码如下所示: package com.ef.smallstar.unitmap.widget; import android.content.res.Resources; import

详解Android中图片的三级缓存及实例

详解Android中图片的三级缓存及实例 为什么要使用三级缓存 如今的 Android App 经常会需要网络交互,通过网络获取图片是再正常不过的事了 假如每次启动的时候都从网络拉取图片的话,势必会消耗很多流量.在当前的状况下,对于非wifi用户来说,流量还是很贵的,一个很耗流量的应用,其用户数量级肯定要受到影响 特别是,当我们想要重复浏览一些图片时,如果每一次浏览都需要通过网络获取,流量的浪费可想而知 所以提出三级缓存策略,通过网络.本地.内存三级缓存图片,来减少不必要的网络交互,避免浪费流量

详解Android中使用Notification实现进度通知栏(示例三)_Android

我们在使用APP的过程中,软件会偶尔提示我们进行版本更新,我们点击确认更新后,会在通知栏显示下载更新进度(已知长度的进度条)以及安装情况(不确定进度条),这就是我们今天要实现的功能.实现效果如下: 在代码实现功能前,我们先解释进度条的两种状态: (1)显示一个已知长度的进度条指示器(Displaying a fixed-duration progress indicator) 为了能够显示一个确定的进度条,通过调用setProgress() setProgress(max, progress,

详解Android中的Toast源码_java

Toast源码实现 Toast入口    我们在应用中使用Toast提示的时候,一般都是一行简单的代码调用,如下所示: [java] view plaincopyprint?在CODE上查看代码片派生到我的代码片 Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();     makeText就是Toast的入口,我们从makeText的源码来深入理解Toast的实现.源码如下(frameworks/base/core/java/andr