1.Notification作为消息通知,这里简单封装了使用

建立一个bean

package com.jcut.view;

/**
* Author:JsonLu
* DateTime:2016/2/26 14:25
* Email:jsonlu@qq.com
* Desc:
**/
public class NotificationModel { private String NTitle;
private String NContent;
private long NWhen;
private String NTicker;
private int NType;
private String NIcon; public String getNTitle() {
return NTitle;
} public void setNTitle(String NTitle) {
this.NTitle = NTitle;
} public String getNContent() {
return NContent;
} public void setNContent(String NContent) {
this.NContent = NContent;
} public long getNWhen() {
return NWhen;
} public void setNWhen(long NWhen) {
this.NWhen = NWhen;
} public String getNTicker() {
return NTicker;
} public void setNTicker(String NTicker) {
this.NTicker = NTicker;
} public int getNType() {
return NType;
} public void setNType(int NType) {
this.NType = NType;
} public String getNIcon() {
return NIcon;
} public void setNIcon(String NIcon) {
this.NIcon = NIcon;
}
}

简单的Notification 的封装

package com.jcut.view;

import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.support.v7.app.NotificationCompat; import com.example.jcut.R; /**
* Author:JsonLu
* DateTime:2016/2/26 12:46
* Email:jsonlu@qq.com
* Desc:
**/
public class Notification extends NotificationCompat { private Builder mBuilder; public Notification(Context context) {
mBuilder = new Builder(context);
} public Notification(Context context, NotificationModel model) {
mBuilder = new Builder(context);
mBuilder.setContentTitle(model.getNTitle())
.setContentText(model.getNContent())
.setTicker(model.getNTicker())
.setWhen(model.getNWhen())
.setPriority(PRIORITY_DEFAULT)
.setOngoing(false)
.setDefaults(model.getNType())
.setSmallIcon(R.drawable.ic_launcher);//此处要下载图片到本地
} public Builder getmBuilder() {
return mBuilder;
} public void setContentIntent(CallBack call) {
mBuilder.setContentIntent(call.getPendingIntent());
} public void notify(int notifyId, NotificationManager manager) {
android.app.Notification notify = mBuilder.build();
notify.flags = Notification.FLAG_AUTO_CANCEL;
manager.notify(notifyId, notify);
} public interface CallBack {
PendingIntent getPendingIntent();
}
}

简单的Test

public void showButtonNotify() {
Notification customNot = new Notification(this);
NotificationCompat.Builder mBuilder = customNot.getmBuilder();
mBuilder.setContentTitle("测试标题")//设置通知栏标题
.setContentText("测试内容") //设置通知栏显示内容
.setTicker("测试通知来啦") //通知首次出现在通知栏,带上升动画效果的
.setWhen(System.currentTimeMillis())//通知产生的时间,会在通知信息里显示,一般是系统获取到的时间
.setPriority(PRIORITY_DEFAULT) //设置该通知优先级
.setOngoing(false)//ture,设置他为一个正在进行的通知。他们通常是用来表示一个后台任务,用户积极参与(如播放音乐)或以某种方式正在等待,因此占用设备(如一个文件下载,同步操作,主动网络连接)
.setDefaults(DEFAULT_VIBRATE)//向通知添加声音、闪灯和振动效果的最简单、最一致的方式是使用当前的用户默认设置,使用defaults属性,可以组合
// Notification.DEFAULT_ALL Notification.DEFAULT_SOUND 添加声音 // requires VIBRATE permission
.setSmallIcon(R.mipmap.ic_launcher);//设置通知小ICON customNot.setContentIntent(new CallBackImpl());
NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
customNot.notify(1, mNotificationManager);
} public PendingIntent getDefalutIntent(int flags) {
Intent notificationIntent = new Intent(this, TestActivity.class);
notificationIntent.setAction(Intent.ACTION_MAIN);
notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
return contentIntent;
} class CallBackImpl implements Notification.CallBack {
@Override
public PendingIntent getPendingIntent() {
return getDefalutIntent(1);
}
}

Notification封装(没做从网络下载)的更多相关文章

  1. WorldWind源码剖析系列:网络下载类WebDownload

    网络下载类WebDownload封装了对请求的瓦片进行网络下载的相关操作.该类使用了两个委托类型和一个枚举类型. 该类的类图如下. 网络下载类WebDownload各个字段和属性的含义说明如下: st ...

  2. 用python做youtube自动化下载器 代码

    目录 项目地址 思路 流程 1. post i. 先把post中的headers格式化 ii.然后把参数也格式化 iii. 最后再执行requests库的post请求 iv. 封装成一个函数 2. 调 ...

  3. [搜片神器]直接从DHT网络下载BT种子的方法

    DHT抓取程序开源地址:https://github.com/h31h31/H31DHTDEMO 数据处理程序开源地址:https://github.com/h31h31/H31DHTMgr DHT系 ...

  4. android 图片网络下载github开源框架之Universal-Image-Loader

    最近在做妙趣剪纸项目,剪纸应用项目链接.发扬传统文化,大家多多关注. 需要自己搭建服务器,我用的是新浪sae,简直秒杀京东云几条街,把图片放在网上下载,但是图片经常下载要遇到很多问题,包括oom等.所 ...

  5. [No000079]罗辑思维2016.1.2日前的所有每日语音,python3做的网络爬虫

    源码地址:https://github.com/charygao/Download_the_LouJiSiWei 写过很久了,vision1.0里有不少bug,今天重新整理修改了一下,运行了一下,2个 ...

  6. 没做过编译器就是被人欺——从一道变态的i++题猜编译器的行为(表达式从左往右扫描,同一变量相互影响)

    首先不要被人蒙了,如果是这样,根本编译不过: int i=1; int b=i+++++i; printf("%d %d\n", b ,i); Mingw报错:error: lva ...

  7. 关于一些没做出来的SBCF题

    这里是一些我SB没做出来的CF水题. 其实这些题思维量还不错,所以写在这里常来看看…… 不一定每题代码都会写. CF1143C Queen 其实只要注意到如果一个点开始能被删,那一直就能被删:一个点开 ...

  8. 所有流媒体协议,编解码规范和媒体封装格式的datasheet的下载地址

    https://github.com/jiayayao/DataSheet All datasheet about stream protocol, encode-decode spec and me ...

  9. 【腾讯敏捷转型No.5】需求没做完可以发布嘛

    很多人对于敏捷的第一直觉就是“快”,开发快,测试快,发布快,并不知道如何把这个“快”应用到敏捷实践中,下面我们来分析一下导致工作效率低的核心原因.没有使用敏捷之前,在大多数情况下,项目管理都需要开各种 ...

随机推荐

  1. 【转】app后端如何选择合适的数据库产品

    转自:http://blog.csdn.net/newjueqi/article/details/44003503 app后端的开发中,经常要面临的一个问题是:数据放在哪里? mysql ?redis ...

  2. SharePoint 2013 弹窗效果之本地HTML打开方式(二)

    上一篇我们主要讲述如何通过showModalDialog方法进行弹出窗体,同时弹出信息定义在新的页面(Application Page),使用 SP.UI.$create_DialogOptions( ...

  3. Maya+3dsMax三维建模

    Maya比较擅长动画,在人物和动物的行为活动方面比较擅长 而3ds Max在建筑物地理地图方面比较擅长,多应用于地理 将两者结合起来将会非常有用

  4. MAC——laravel环境

    apache: 目录:etc/apache2 重启:sudo apachectl restart PHP: 把/etc/php.ini.default复制并重命名/ect/php.ini 打开Load ...

  5. 在Eclipse中安装m2e插件遇到的问题

    最近自己想使用maven来搭建自动化测试框架,当中遇到了很多问题,其中之一就是安装m2e(Maven Integration for Eclipse). 其实原来的eclipse中已经安装好了m2e, ...

  6. 解决方案-Microsoft Visual Studio 2012 已停止工作

    问题: 根本解决方案: 用管理员模式运行. 找到软件的安装目录 \Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe 然后如何保存管理员权限运行呢? ...

  7. GNU 网络程序

    ______________________________________________________________________________ | 版权声明 | | 1.本文可以转载.修 ...

  8. BZOJ 3107 二进制a+b

    Description 输入三个整数\(a, b, c\),把它们写成无前导\(0\)的二进制整数.比如\(a=7, b=6, c=9\),写成二进制为\(a=111, b=110, c=1001\) ...

  9. Pots

    poj3414:http://poj.org/problem?id=3414 题意:给你两个罐子的体积,然后让你只用这两个罐子量出给定k体积的水.题解:这里可以把两个罐子看成是一个二维的图,然后体积的 ...

  10. ubuntu 查本机 ip地址的命令是什么, 详细信息的?

    使用ifconfig命令即可.你一敲进去都出来了