【直接拿来用のandroid公共代码模块解析与分享】の Notification和NotificationManager
本文源代码托管在https://github.com/ASCE1885/asce-common,欢迎fork
Android项目做得多了。会发现原来非常多基础的东西都是能够复用,这个系列介绍一些自己项目中经常使用到的公共模块代码(当然仅仅谈技术不谈业务),一来整理好了自己以后能够直接用,二来也分享给大家,希望能略微降低大家的加班时间,提高些许效率。
Android Notification的原理和作用这里就不作说明了,相信是个android开发人员都用过不止一次了,下面仅仅介绍怎样封装成公共的模块。以供整个项目使用。
基于不同的目的。Notification的外观区别非常大,相应到代码上就是布局的差异,因此。我们首先须要有一个接口供使用者来创建不同布局的Notification,接口在Java中当然是以Interface的形式存在。如代码清单IMyNotificationBuilder.java所看到的。
/**
* Notification接口
*
* @author asce1885
* @date 2014-06-09
*
*/
public interface IMyNotificationBuilder { public static final String NOTIFICATION_ID = IMyNotificationBuilder.class.getSimpleName(); Notification buildNotification(String title, String content); }
看到这里,熟悉设计模式的同学应该知道我们使用的是Builder模式来构建不同的Notification,依照惯例,一般会有一个默认的Builder实现,我们将之命名为BasicNotificationBuilder.java。它使用的是Android系统默认的通知栏布局。
/**
* 默认Notification构造器
*
* @author asce1885
* @date 2014-06-09
*
*/
public class BasicNotificationBuilder implements IMyNotificationBuilder { private Context mContext;
private PendingIntent mPendingIntent; public int mIconDrawableId; public BasicNotificationBuilder(Context context, PendingIntent pendingIntent) {
mContext = context;
mPendingIntent = pendingIntent;
mIconDrawableId = PackageUtils.getAppInfo(context).icon;
} public BasicNotificationBuilder(Context context, PendingIntent pendingIntent, int iconDrawableId) {
mContext = context;
mPendingIntent = pendingIntent;
mIconDrawableId = iconDrawableId;
} @SuppressWarnings("deprecation")
@Override
public Notification buildNotification(String title, String content) {
Notification basicNotification = new Notification(mIconDrawableId, title,
System.currentTimeMillis());
basicNotification.setLatestEventInfo(mContext, title, content, mPendingIntent);
basicNotification.flags |= Notification.FLAG_AUTO_CANCEL;
basicNotification.defaults = Notification.DEFAULT_SOUND;
basicNotification.contentIntent = mPendingIntent; return basicNotification;
} }
对于其它须要自己定义布局的通知栏形式。我们另外实现一个类。布局文件由使用者自己定义,见代码清单CustomNotificationBuilder.java。
/**
* 自己定义样式Notification构造器
*
* @author asce1885
* @date 2014-06-09
*
*/
public class CustomNotificationBuilder implements IMyNotificationBuilder { private Context mContext;
private int mCustomeLayout;
private int mLayoutSubjectId;
private int mLayoutMessageId;
private int mLayoutIconId;
private int mStatusBarIconDrawableId;
private Uri mSoundUri;
private PendingIntent mPendingIntent; public CustomNotificationBuilder(Context context, int customeLayout, int layoutSubjectId, int layoutMessageId, int layoutIconId, int statusBarIconDrawableId, Uri soundUri, PendingIntent pendingIntent) {
mContext = context;
mCustomeLayout = customeLayout;
mLayoutSubjectId = layoutSubjectId;
mLayoutMessageId = layoutMessageId;
mLayoutIconId = layoutIconId;
mStatusBarIconDrawableId = statusBarIconDrawableId;
mSoundUri = soundUri;
mPendingIntent = pendingIntent;
} @SuppressWarnings("deprecation")
@Override
public Notification buildNotification(String title, String content) {
if (TextUtils.isEmpty(content)) {
return null;
} PreFroyoNotificationStyleDiscover.getInstance().discoverStyle(mContext); Notification customerNotification = new Notification(mStatusBarIconDrawableId, title,
System.currentTimeMillis());
RemoteViews customerRemoteView = new RemoteViews(mContext.getPackageName(), mCustomeLayout);
customerRemoteView.setTextViewText(mLayoutSubjectId, PackageUtils.getAppName(mContext));
customerRemoteView.setTextViewText(mLayoutMessageId, content);
customerRemoteView.setImageViewResource(mLayoutIconId, mStatusBarIconDrawableId);
customerNotification.flags |= Notification.FLAG_AUTO_CANCEL; if (mSoundUri != null) {
customerNotification.sound = mSoundUri;
} else {
customerNotification.defaults = Notification.DEFAULT_SOUND;
}
customerNotification.contentIntent = mPendingIntent; // Some SAMSUNG devices status bar cant't show two lines with the size,
// so need to verify it, maybe increase the height or decrease the font size customerRemoteView.setFloat(mLayoutSubjectId, "setTextSize",
PreFroyoNotificationStyleDiscover.getInstance().getTitleSize());
customerRemoteView.setTextColor(mLayoutSubjectId, PreFroyoNotificationStyleDiscover
.getInstance().getTitleColor()); customerRemoteView.setFloat(mLayoutMessageId, "setTextSize",
PreFroyoNotificationStyleDiscover.getInstance().getTextSize());
customerRemoteView.setTextColor(mLayoutMessageId, PreFroyoNotificationStyleDiscover
.getInstance().getTextColor()); customerNotification.contentView = customerRemoteView; return customerNotification;
} /**
* A class for discovering Android Notification styles on Pre-Froyo (2.3) devices
*/
private static class PreFroyoNotificationStyleDiscover { private Integer mNotifyTextColor = null;
private float mNotifyTextSize = 11;
private Integer mNotifyTitleColor = null;
private float mNotifyTitleSize = 12;
private final String TEXT_SEARCH_TEXT = "SearchForText";
private final String TEXT_SEARCH_TITLE = "SearchForTitle"; private static Context mContext; private static class LazyHolder {
private static final PreFroyoNotificationStyleDiscover sInstance = new PreFroyoNotificationStyleDiscover();
} public static PreFroyoNotificationStyleDiscover getInstance() {
return LazyHolder.sInstance;
} private PreFroyoNotificationStyleDiscover() { } public int getTextColor() {
return mNotifyTextColor.intValue();
} public float getTextSize() {
return mNotifyTextSize;
} public int getTitleColor() {
return mNotifyTitleColor;
} public float getTitleSize() {
return mNotifyTitleSize;
} private void discoverStyle(Context context) {
mContext = context;
// Already done
if (null != mNotifyTextColor) {
return;
} try {
Notification notify = new Notification();
notify.setLatestEventInfo(mContext, TEXT_SEARCH_TITLE, TEXT_SEARCH_TEXT, null);
LinearLayout group = new LinearLayout(mContext);
ViewGroup event = (ViewGroup) notify.contentView.apply(mContext, group);
recurseGroup(event);
group.removeAllViews();
} catch (Exception e) {
// Default to something
mNotifyTextColor = android.R.color.black;
mNotifyTitleColor = android.R.color.black;
}
} private boolean recurseGroup(ViewGroup group) {
final int count = group.getChildCount(); for (int i = 0; i < count; ++i) {
if (group.getChildAt(i) instanceof TextView) {
final TextView tv = (TextView) group.getChildAt(i);
final String text = tv.getText().toString();
if (text.startsWith("SearchFor")) {
DisplayMetrics metrics = new DisplayMetrics();
WindowManager wm = (WindowManager) mContext
.getSystemService(Context.WINDOW_SERVICE);
wm.getDefaultDisplay().getMetrics(metrics); if (TEXT_SEARCH_TEXT == text) {
mNotifyTextColor = tv.getTextColors().getDefaultColor();
mNotifyTextSize = tv.getTextSize();
mNotifyTextSize /= metrics.scaledDensity;
} else {
mNotifyTitleColor = tv.getTextColors().getDefaultColor();
mNotifyTitleSize = tv.getTextSize();
mNotifyTitleSize /= metrics.scaledDensity;
} if (null != mNotifyTitleColor && mNotifyTextColor != null) {
return true;
}
}
} else if (group.getChildAt(i) instanceof ViewGroup) {
if (recurseGroup((ViewGroup) group.getChildAt(i))) {
return true;
}
}
}
return false;
}
} }
Notification的构建代码至此结束。而要发出Notification,使用的是NotificationManager,我们将它封装成代码清单MyNotificationManager.java。
/**
* Notification管理器
*
* @author asce1885
* @date 2014-06-09
*
*/
public class MyNotificationManager { private IMyNotificationBuilder mMyNotificationBuilder; private static final int START_ID = 1000;
private static final int RANGE = 50;
private int mCurrentId = START_ID; private MyNotificationManager() { } private static class LazyHolder {
private static final MyNotificationManager sInstance = new MyNotificationManager();
} public static MyNotificationManager getInstance() {
return LazyHolder.sInstance;
} public IMyNotificationBuilder getMyNotificationBuilder() {
return mMyNotificationBuilder;
} public void setMyNotificationBuilder(IMyNotificationBuilder builder) {
mMyNotificationBuilder = builder;
} public void deliverNotification(Context context, String title, String content) {
buildAndDisplayNotification(context, title, content);
} private void buildAndDisplayNotification(Context context, String title, String content) {
if (null != mMyNotificationBuilder) {
Notification notification = mMyNotificationBuilder.buildNotification(title, content);
if (null != notification) {
notification.flags |= Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager = (NotificationManager) context
.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(generateNotification(), notification);
}
}
} private int generateNotification() {
mCurrentId++;
if (mCurrentId >= START_ID + RANGE) {
mCurrentId = START_ID;
}
return mCurrentId;
}
}
最后给下使用的演示样例代码例如以下所看到的,仅仅作为參考。里面的部分变量不用深究。
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
intent.putExtra(BundleConstant.KEY_NOTIFICATION_TYPE, action);
intent.putExtra(BundleConstant.KEY_WEBVIEW_TITLE, notice.webview_title);
intent.putExtra(BundleConstant.KEY_WEBVIEW_URL, notice.webview_url);
PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(), (int) notice.nid, intent, PendingIntent.FLAG_UPDATE_CURRENT); builder = new BasicNotificationBuilder(getApplicationContext(), pendingIntent);
MyNotificationManager.getInstance().setMyNotificationBuilder(builder);
MyNotificationManager.getInstance().deliverNotification(getApplicationContext(), notice.notification_title, notice.notification_content);
——欢迎转载。请注明出处 http://blog.csdn.net/asce1885 ,未经本人允许请勿用于商业用途。谢谢——
【直接拿来用のandroid公共代码模块解析与分享】の Notification和NotificationManager的更多相关文章
- Android实用代码模块集锦
1. 精确获取屏幕尺寸(例如:3.5.4.0.5.0寸屏幕) 1 2 3 4 5 6 public static double getScreenPhysicalSize(Activity ctx) ...
- 系统管理模块_部门管理_改进_抽取添加与修改JSP页面中的公共代码_在显示层抽取BaseAction_合并Service层与Dao层
系统管理模块_部门管理_改进1:抽取添加与修改JSP页面中的公共代码 commons.jspf <%@ page language="java" import="j ...
- android开源代码
Android开源项目--分类汇总 转自:https://github.com/Trinea/android-open-project Android开源项目第一篇——个性化控件(View)篇 包括L ...
- 160多个android开源代码汇总
第一部分 个性化控件(View) 主要介绍那些不错个性化的View,包括ListView.ActionBar.Menu.ViewPager.Gallery.GridView.ImageView.Pro ...
- Android 开源项目android-open-project工具库解析之(一) 依赖注入,图片缓存,网络相关,数据库orm工具包,Android公共库
一.依赖注入DI 通过依赖注入降低View.服务.资源简化初始化.事件绑定等反复繁琐工作 AndroidAnnotations(Code Diet) android高速开发框架 项目地址:https: ...
- (通用)Android App代码混淆终极解决方案【转】
App虽然没有那么的高大上,但是代码的混淆是代表了程序员对App的责任心, 也是对App安全的一点点保证.今天我会将自己做Android混淆的过程和体会分享给大家,也避免大家少走弯路,少跳坑. 本篇博 ...
- 系统中异常公共处理模块 in spring boot
最近在用spring boot 做微服务,所以对于异常信息的 [友好展示]有要求,我设计了两点: 一. 在业务逻辑代码中,异常的抛出 我做了限定,一般只会是三种: 1. OmcException // ...
- Android开发代码规范(转)
Android开发代码规范 1.命名基本原则 在面向对象编程中,对于类,对象,方法,变量等方面的命名是非常有技巧的.比如,大小写的区分,使用不同字母开头等等.但究其本,追其源,在为一个资源其名称 ...
- 黑客破译android开发代码真就那么简单?
很多程序员辛辛苦苦开发出的android开发代码,很容易就被黑客翻译了. Google似乎也发现了这个问题,从SDK2.3开始我们可以看到在android-sdk-windows\tools\下面多了 ...
随机推荐
- 转移顺序的艺术 luogu4394 + lougu2966 + luogu3537
lougu4394: N个政党要组成一个联合内阁,每个党都有自己的席位数. 现在希望你找出一种方案,你选中的党的席位数要大于总数的一半,并且联合内阁的席位数越多越好. 对于一个联合内阁,如果某个政党退 ...
- 如何在Google Play上通过电脑下载apk
操作步骤: 1.首先打开翻 墙软件. 2.键入网址:http://apps.evozi.com/apk-downloader/ 3.将Google Play里apk的网址,复制到“Package na ...
- Myeclipse学习总结(4)——Eclipse常用开发插件
(1) AmaterasUML 介绍:Eclipse的UML插件,支持UML活动图,class图,sequence图,usecase图等:支持与Java class/interf ...
- jsp静态引入(<%@ include file=""%>) 乱码问题
在web.xml中的web-app中加入这段话: <jsp-config> <jsp-property-group> <display-name>JSPConfig ...
- ArcGIS api for javascript——以地理处理结果为条件查询地图
这里发生什么任务呢?当第一次单击地图,单击的坐标被发送到一个Geoprocessor任务.该任务访问服务器上的通过ArcGIS Server 地理处理服务提供的可用的GIS模型.本例中模型计算驱动时间 ...
- Android基础新手教程——4.3.2 BroadcastReceiver庖丁解牛
Android基础新手教程--4.3.2 BroadcastReceiver庖丁解牛 标签(空格分隔): Android基础新手教程 本节引言: 上节我们对BroadcastReceiver已经有了一 ...
- 实战Jquery(四)--标签页效果
这两天完毕了实战四五六的样例,实例四是标签页的实现方法,实例五是级联菜单下拉框,实例六是窗体效果,都是web层经常使用的效果.越到后面越发认为技术这东西,就是一种思路的展现,懂了要实现 ...
- 【POJ3377】Ferry Lanes 最短路
我仅仅是贴一下手写堆优化的dij模板.尽管.它.TLE了--**** #include <cstdio> #include <cstring> #include <ios ...
- 【Linux】JDK+Eclipse 搭建C/C++开发环境
注:本文所提供的参考示例是在CentOS Linux环境下的安装,不保证适用于其他版本的Linux系统. · 安装前的注意事项 编译源代码是需要对应的代码编译工具的,本文中安装的Eclipse只 ...
- docker 笔记1
如果想要删除所有container的话再加一个指令: docker stop $(docker ps -a -q) 如果想要删除所有container的话再加一个指令: docker rm $(doc ...