本文源代码托管在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的更多相关文章

  1. Android实用代码模块集锦

    1. 精确获取屏幕尺寸(例如:3.5.4.0.5.0寸屏幕) 1 2 3 4 5 6 public static double getScreenPhysicalSize(Activity ctx)  ...

  2. 系统管理模块_部门管理_改进_抽取添加与修改JSP页面中的公共代码_在显示层抽取BaseAction_合并Service层与Dao层

    系统管理模块_部门管理_改进1:抽取添加与修改JSP页面中的公共代码 commons.jspf <%@ page language="java" import="j ...

  3. android开源代码

    Android开源项目--分类汇总 转自:https://github.com/Trinea/android-open-project Android开源项目第一篇——个性化控件(View)篇 包括L ...

  4. 160多个android开源代码汇总

    第一部分 个性化控件(View) 主要介绍那些不错个性化的View,包括ListView.ActionBar.Menu.ViewPager.Gallery.GridView.ImageView.Pro ...

  5. Android 开源项目android-open-project工具库解析之(一) 依赖注入,图片缓存,网络相关,数据库orm工具包,Android公共库

    一.依赖注入DI 通过依赖注入降低View.服务.资源简化初始化.事件绑定等反复繁琐工作 AndroidAnnotations(Code Diet) android高速开发框架 项目地址:https: ...

  6. (通用)Android App代码混淆终极解决方案【转】

    App虽然没有那么的高大上,但是代码的混淆是代表了程序员对App的责任心, 也是对App安全的一点点保证.今天我会将自己做Android混淆的过程和体会分享给大家,也避免大家少走弯路,少跳坑. 本篇博 ...

  7. 系统中异常公共处理模块 in spring boot

    最近在用spring boot 做微服务,所以对于异常信息的 [友好展示]有要求,我设计了两点: 一. 在业务逻辑代码中,异常的抛出 我做了限定,一般只会是三种: 1. OmcException // ...

  8. Android开发代码规范(转)

    Android开发代码规范 1.命名基本原则    在面向对象编程中,对于类,对象,方法,变量等方面的命名是非常有技巧的.比如,大小写的区分,使用不同字母开头等等.但究其本,追其源,在为一个资源其名称 ...

  9. 黑客破译android开发代码真就那么简单?

    很多程序员辛辛苦苦开发出的android开发代码,很容易就被黑客翻译了. Google似乎也发现了这个问题,从SDK2.3开始我们可以看到在android-sdk-windows\tools\下面多了 ...

随机推荐

  1. sysctl---内核参数相关设置

    sysctl命令被用于在内核运行时动态地修改内核的运行参数,可用的内核参数在目录/proc/sys中.它包含一些TCP/ip堆栈和虚拟内存系统的高级选项, 这可以让有经验的管理员提高引人注目的系统性能 ...

  2. [Recompose] Stream a React Component from an Ajax Request with RxJS

    Loading data using RxJS is simple using Observable.ajax. This lesson shows you how to take the ajax ...

  3. 适用于OpenGL离屏渲染上下文的初始化代码

    说明 近期做图像算法.须要用到shader对图像进行处理,用glut会有窗体,不适合写成UT測试用例,须要创建一个无窗体的OpenGL上下文. 代码 这部分代码事实上是參考 Android的Skia ...

  4. HDU Victor and World (最短路+状态压缩)

    题目链接:传送门 题意: n个城市m条路.刚開始在点1,求把每一个城市都遍历一边最后回到1的花费的最小值. 分析: ​​+n​2​​∗2​n​​). 转自Bestcode. 以下说说我的状态转移,首先 ...

  5. .net framework tools

    https://docs.microsoft.com/en-us/dotnet/framework/tools/ Resgen.exe (Resource File Generator) Conver ...

  6. setTimeOut函数传参数

    这样使用,后面的4000无效 setTimeout(removeGift(customer_id,gift_id),4000); function removeGift(customer_id,gif ...

  7. Java基本数据类型及字节

    1.基本类型可以分为三类,字符类型char,布尔类型boolean以及数值类型byte.short.int.long.float.double.数值类型又可以分为整数类型byte.short.int. ...

  8. Mybatis传多个参数(推荐)

    Dao层的函数方法 int deleteMsgById(@Param("name") String name,@Param("id") String id); ...

  9. orm 通用方法——RunProc调用存储过程

    该方法暂不支持带返回值的存储过程,期待能人补充指点. 定义代码: /** * 描述:执行存储过程 * 作者:Tianqi * 日期:2014-09-16 * param:rs orm.RawSeter ...

  10. 使用Spring Boot Actuator、Jolokia和Grafana实现准实时监控--转

    原文地址:http://mp.weixin.qq.com/s?__biz=MzAxODcyNjEzNQ==&mid=2247483789&idx=1&sn=ae11f04780 ...