【直接拿来用の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\下面多了 ...
随机推荐
- python语法学习笔记
函数的参数 定义函数的时候,我们把参数的名字和位置确定下来,函数的接口定义就完成了.对于函数的调用者来说,只需要知道如何传递正确的参数,以及函数将返回什么样的值就够了,函数内部的复杂逻辑被封装起来 ...
- vscode 问题
*)不能切换为中文输入法 没有搜索到解决办法,重启应用解决
- 紫书 例题 10-9 UVa 1636 (概率计算)
小学数学问题 记得分数比较的时候可以交叉相乘(同号) #include<cstdio> #include<cstring> #define REP(i, a, b) for(i ...
- 题解 CF383C 【Propagating tree】
这道题明明没有省选难度啊,为什么就成紫题了QAQ 另:在CF上A了但是洛谷Remote Judge玄学爆零. 思路是DFS序+线段树. 首先这道题直观上可以对于每一次修改用DFS暴力O(n),然后对于 ...
- Java 中的事件监听机制
看项目代码时遇到了好多事件监听机制相关的代码.现学习一下: java事件机制包含三个部分:事件.事件监听器.事件源. 1.事件:继承自java.util.EventObject类,开发人员自己定义. ...
- 安卓ContentObserver模式获取短信用正则自己主动填充验证码
近期做注冊的时候看到非常多app在手机接受到短信的时候直接填写验证码到界面省略用户自己主动输入,感觉这样确实蛮人性化的呵呵.于是自己也做了一个 步骤: 首先我使用了ContentObserver监听短 ...
- EF数据迁移命令
在包管理器控制台中输入命令“enable-migrations”,然后按Enter键!Visual Studio将生成一个名为“Configurations.cs”的文件; 你可以安全地忽略它,但你需 ...
- POJ 1986 裸的LCA
思路:搞了一发链剖 //By SiriusRen #include <cstdio> #include <cstring> #include <algorithm> ...
- Network Stack : Disk Cache
Disk Cache 目录 1 Overview 2 External Interface 3 Disk Structure 3.1 Cache Address 3.2 Index File Stru ...
- [Usaco2009 Feb]Stock Market 股票市场 完全背包
Code: #include<cstdio> #include<algorithm> #include<iostream> #include<cstring& ...