要加入的功能是常驻Notification栏,以前写的时候只能出现 在“通知”这一组中,想把它放在“正在运行”组中却不知道怎么放,查了下官方文档,找到了方法,在notification的flags字段中加一下 “FLAG_ONGOING_EVENT”就可以了。同时我也把Notification的使用方法给总结了一下。详见下文:
(
1
)、使用系统定义的Notification
以下是使用示例代码:
//创建一个NotificationManager的引用
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
// 定义Notification的各种属性
int
icon = R.drawable.icon;
//通知图标
CharSequence tickerText =
"Hello"
;
//状态栏显示的通知文本提示
long
when = System.currentTimeMillis();
//通知产生的时间,会在通知信息里显示
//用上面的属性初始化 Nofification
Notification notification =
new
Notification(icon,tickerText,when);
/*
* 添加声音
* notification.defaults |=Notification.DEFAULT_SOUND;
* 或者使用以下几种方式
* notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
* 如果想要让声音持续重复直到用户对通知做出反应,则可以在notification的flags字段增加"FLAG_INSISTENT"
* 如果notification的defaults字段包括了"DEFAULT_SOUND"属性,则这个属性将覆盖sound字段中定义的声音
*/
/*
* 添加振动
* notification.defaults |= Notification.DEFAULT_VIBRATE;
* 或者可以定义自己的振动模式:
* long[] vibrate = {0,100,200,300}; //0毫秒后开始振动,振动100毫秒后停止,再过200毫秒后再次振动300毫秒
* notification.vibrate = vibrate;
* long数组可以定义成想要的任何长度
* 如果notification的defaults字段包括了"DEFAULT_VIBRATE",则这个属性将覆盖vibrate字段中定义的振动
*/
/*
* 添加LED灯提醒
* notification.defaults |= Notification.DEFAULT_LIGHTS;
* 或者可以自己的LED提醒模式:
* notification.ledARGB = 0xff00ff00;
* notification.ledOnMS = 300; //亮的时间
* notification.ledOffMS = 1000; //灭的时间
* notification.flags |= Notification.FLAG_SHOW_LIGHTS;
*/
/*
* 更多的特征属性
* notification.flags |= FLAG_AUTO_CANCEL; //在通知栏上点击此通知后自动清除此通知
* notification.flags |= FLAG_INSISTENT; //重复发出声音,直到用户响应此通知
* notification.flags |= FLAG_ONGOING_EVENT; //将此通知放到通知栏的"Ongoing"即"正在运行"组中
* notification.flags |= FLAG_NO_CLEAR; //表明在点击了通知栏中的"清除通知"后,此通知不清除,
* //经常与FLAG_ONGOING_EVENT一起使用
* notification.number = 1; //number字段表示此通知代表的当前事件数量,它将覆盖在状态栏图标的顶部
* //如果要使用此字段,必须从1开始
* notification.iconLevel = ; //
*/
//设置通知的事件消息
Context context = getApplicationContext();
//上下文
CharSequence contentTitle =
"My Notification"
;
//通知栏标题
CharSequence contentText =
"Hello World!"
;
//通知栏内容
Intent notificationIntent =
new
Intent(
this
,Main.
class
);
//点击该通知后要跳转的Activity
PendingIntent contentIntent = PendingIntent.getActivity(
this
,
0
,notificationIntent,
0
);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
//把Notification传递给 NotificationManager
mNotificationManager.notify(
0
,notification);
如果想要更新一个通知,只需要在设置好notification之后,再次调用 setLatestEventInfo(),然后重新发送一次通知即可,即再次调用notify()。
(
2
)、使用自定义的 Notification
要 创建一个自定义的Notification,可以使用RemoteViews。要定义自己的扩展消息,首先 要初始化一个RemoteViews对象,然后将它传递给Notification的contentView字段,再把PendingIntent传递给 contentIntent字段。以下示例代码是完整步骤:
//1、创建一个自 定义的消息布局 view.xml
<?xml version=
"1.0"
encoding=
"utf-8"
?>
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
>
<ImageView android:id=
"@+id/image"
android:layout_width=
"wrap_content"
android:layout_height=
"fill_parent"
android:layout_marginRight=
"10dp"
/>
<TextView android:id=
"@+id/text"
android:layout_width=
"wrap_content"
android:layout_height=
"fill_parent"
android:textColor=
"#000"
/>
</LinearLayout>
//2、 在程序代码中使用RemoteViews的方法来定义image和text。然后把RemoteViews对象传到contentView字段
RemoteViews contentView =
new
RemoteViews(getPackageName(),R.layout.view);
contentView.setImageViewResource(R.id.image,R.drawable.icon);
contentView.setTextViewText(R.id.text,”Hello,
this
message is in a custom expanded view”);
notification.contentView = contentView;
//3、 为Notification的contentIntent字段定义一个Intent(注意,使用自定义View不需要 setLatestEventInfo()方法)
Intent notificationIntent =
new
Intent(
this
,Main.
class
);
PendingIntent contentIntent = PendingIntent.getActivity(
this
,
0
,notificationIntent,
0
);
notification.contentIntent = contentIntent;
//4、发送通知
mNotificationManager.notify(
2
,notification);
// 以下是全部示例代码
//创建一个 NotificationManager的引用
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
// 定义Notification的各种属性
int
icon = R.drawable.icon;
//通知图标
CharSequence tickerText =
"Hello"
;
//状态栏显示的通知文本提示
long
when = System.currentTimeMillis();
//通知产生的时间,会在通知信息里显示
//用上面的属性初始化 Nofification
Notification notification =
new
Notification(icon,tickerText,when);
RemoteViews contentView =
new
RemoteViews(getPackageName(),R.layout.view);
contentView.setImageViewResource(R.id.image, R.drawable.iconempty);
contentView.setTextViewText(R.id.text,
"Hello,this is JC"
);
notification.contentView = contentView;
Intent notificationIntent =
new
Intent(
this
,Main.
class
);
PendingIntent contentIntent = PendingIntent.getActivity(
this
,
0
,notificationIntent,
0
);
notification.contentIntent = contentIntent;
//把Notification传递给NotificationManager
mNotificationManager.notify(
0
,notification);
相关推荐
综上所述,"android 通知栏跳转"涉及到Android的通知系统、Intent、PendingIntent的使用,以及如何在目标Activity中处理点击事件,实现用户从通知栏直接进入相应的界面。通过理解并熟练掌握这些知识点,开发者可以...
Android通知栏实现
"android通知栏提示下载进度源码"是一个示例项目,它展示了如何在Android的通知栏创建一个更新下载进度的提示。下面,我们将详细讲解这个知识点。 1. **Android通知栏基础** - Android的通知栏用于展示各种提醒和...
总之,获取Android通知栏的内容涉及到对Android的通知系统有深入的理解,包括Notification类、BroadcastReceiver以及在不同Android版本下的适配策略。通过以上介绍,你可以开始构建自己的GetNotifiService,实现获取...
本教程将详细介绍如何在Android中实现一个常驻通知栏的Notification,以确保即使在用户关闭应用后,该通知仍然可见。 一、Notification的基本结构 1. **Notification channels**: 从Android O(8.0)开始,每个...
android NotificationListenerService 监听通知栏,android NotificationListenerService 监听通知栏 android NotificationListenerService 监听通知栏
在Delphi环境中,通过FireMonkey (FMX) 框架,我们可以实现Android的通知栏消息功能。本篇文章将详细介绍如何使用Delphi来创建单行和多行的Android通知消息。 首先,我们需要了解Android的通知系统。Android的通知...
本教程将深入探讨如何使用`NotificationListenerService`来监听Android设备的通知栏事件,以便实现自定义的功能,如记录通知历史、管理通知或者进行其他定制化处理。 `NotificationListenerService`是Android提供的...
在Android系统中,通知栏是应用与用户交互...以上就是关于Android通知栏拦获微信消息的基本实现过程和关键知识点。理解并掌握这些内容,开发者可以创建自己的通知管理应用,实现对特定应用,如微信,通知的监听和处理。
本教程将详细介绍如何解决Android通知栏图标显示为小黑块的问题,以及如何在Android 8.0(Oreo)及以上版本进行适配,并判断不同版本的通知栏开启状态。 首先,我们来谈谈通知栏图标显示为小黑块的问题。这通常是...
在Android系统中,通知栏是用户获取应用状态和系统信息的重要途径。对于开发者来说,有效地管理和操作通知栏是提升用户体验的关键。本节我们将深入探讨如何利用`Service`而非`NotificationManager`来实现通知栏操作...
综上所述,"android通知栏更新,下载完成自动安装并清除消息通知"这一功能涉及到Android的通知系统、服务组件、下载管理、BroadcastReceiver、安装流程等多个核心知识点。`UpdateService`文件可能是实现这些功能的...
本资源,"Android系统通知栏适配",是一个关于如何在Android应用中实现通知角标的示例代码,帮助开发者在图标右上角添加数字或小红点,以提示用户有未读消息或事件。 角标(Badge)通常是一个小的数字或者图形,...
在Android开发中,创建一个...通过研究这个源码,开发者不仅可以学习到如何实现一个音乐播放器的消息通知栏功能,还能掌握服务、广播接收器和媒体播放的相关知识,对Android系统的深入理解和应用开发能力会有显著提升。
实现常驻通知栏通知涉及的关键知识点有: 1. **Notification类**:在Android中,创建和管理通知的主要类是`Notification`。开发者需要构建一个`Notification`对象,设置它的各种属性,如图标、标题、内容、优先级等...
在标题"Android应用源码之实现Notification的通知栏常驻"中,主要关注的是如何使Notification即使在用户离开应用后仍然保留在通知栏,提供持续的可见性。这通常涉及到Android的Notification持久性和优先级设置。 ...
这个"android展开通知栏demo(兼容4.2及以上版本)"就是一个针对Android 4.2及以上版本实现通知栏展开功能的示例项目。在这个项目中,开发者使用了反射机制来实现对系统API的调用,因为直接调用可能会因为权限限制而...
通过以上步骤,这个Demo实现了在Android通知栏进行后台下载,并提供了取消功能。开发者可以通过阅读`使用说明.html`来了解具体的实现细节,通过`程序演示截图.png`来直观理解用户界面,而`...
在Android开发中,自定义通知栏是提升用户体验的重要手段,特别是在进行后台任务如下载、上传等操作时。本文将深入探讨如何实现一个自定义的通知栏,以动态更新进度条来模拟下载过程。虽然这里并不涉及实际的下载...
通过这个实例,初学者可以了解到`PopupWindow`的基本用法,以及如何模拟Android通知栏的下拉效果。在实际开发中,还可以根据需求进行更多定制,例如添加触摸反馈、交互事件监听等。理解并掌握这些知识点,对于提升...