doOnNext官方介绍:
The doOnNext operator is much like doOnEach(Action1) except that the Action that you pass it as a parameter does not accept a Notification but instead simply accepts the emitted item.
可...
分类:
编程语言 时间:
2016-05-27 12:11:50
阅读次数:
289
前面一节已经讲过如何在ionic中集成jpush,这样我们的hbrid app在部署到ios或者android上面的时候,就可以接收通知了。如果不满足系统自带的声音,我们可以通过一些方式来播放自定义的通知铃声。 ios: 编译工程:ionic build ios 使用xcode打开工程。 把铃声文件 ...
分类:
其他好文 时间:
2016-05-27 09:25:27
阅读次数:
158
1.可以通过getActivity(Context context, int requestCode, Intent intent, int flags)系列方法从系统取得一个用于启动一个Activity的PendingIntent对象 2.可以通过getService(Context contex ...
分类:
其他好文 时间:
2016-05-25 23:53:18
阅读次数:
205
布局定义custom_notification.xml<?xmlversion="1.0"encoding="utf-8"?>
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+..
分类:
其他好文 时间:
2016-05-25 19:04:49
阅读次数:
438
序:最近工作使用WorkTile,发现使用Chrome浏览器的时候如果有任务下发给我则会在桌面右下角提示(当前浏览器为最小化模式)。感觉这个东西蛮有意思的,感觉可以给用户更好的体验,于是乎就查询了一下,发现是Html5的新特性。 0x01:IE内核的浏览器还不可以,但在Chrome与Firefox上 ...
分类:
Web程序 时间:
2016-05-25 18:28:53
阅读次数:
312
项目环境 Project Build Target:Android 6.0 问题: 使用 new Notification(int icon, CharSequence tickerText, long when)构造函数时,Eclipse却提示:" The constructor Notifica ...
分类:
移动开发 时间:
2016-05-24 16:46:02
阅读次数:
644
基本功 iOS在诞生之初为了最大程度的保证用户体验,做了一些高瞻远瞩且影响深远的设计。APNs(Apple Push Notification service)就是其中一项。 早期iOS设备的内存和CPU资源都很有限,为了让前台活跃的app拥有尽可能多的系统资源,以及节约设备电量,iOS一开始就“不 ...
分类:
移动开发 时间:
2016-05-23 22:29:59
阅读次数:
1132
一:普通Notification 1.内容标题setContentTitle(...) 2.大图标setLargeIcon(Bitmap) 3.内容setContentText(...) 4.内容附加信息setContentInfo(...) 5.小图标setSmallIcon(...) 6.时间( ...
分类:
其他好文 时间:
2016-05-23 14:40:50
阅读次数:
168
一.Toast:由makeText 构建并返回 Toast 1.context 2.消息内容 3.显示的时间长短:①Toast.LENGTH_SHORT ②Toast.LENGTH_LONG 二.Notification 1.状态栏消息 可以跳转到Activity上 2.用法 (1)得到Notifi ...
分类:
其他好文 时间:
2016-05-22 22:46:54
阅读次数:
267
接触通知中心很久了,一直也没用过它传值,今天任务完成的比较早,所以做了个小demo,后界面通知中心往前界面传值 发送者视图控制器: - (void)viewDidLoad { [super viewDidLoad]; } - (IBAction)call:(id)sender { //当输入框内的文 ...
分类:
其他好文 时间:
2016-05-21 17:30:07
阅读次数:
155