Notification是一种让你的应用程序在不使用Activity的情况下警示用户,Notification是看不见的程序组件警示用户有需要注意的事件发生的最好途径。作为UI部分,Notification对移动设备来说是最适合不过的了。用户可能随时都带着手机在身边。一般来说,用户会在后台打开几个程...
分类:
移动开发 时间:
2014-07-16 22:53:49
阅读次数:
180
如果你有这方面的需求,那你实践的时候可能会发现,多个Notifycation点击的时候会传递相同的数据.通常情况下我们可能这样写.Notification notification = new Notification(R.drawable.ic_launcher_9, name , System....
分类:
移动开发 时间:
2014-07-11 23:15:57
阅读次数:
282
epoll - I/O event notification facility在linux的网络编程中,非常长的时间都在使用select来做事件触发。在linux新的内核中,有了一种替换它的机制,就是epoll。相比于select,epoll最大的优点在于它不会随着监听fd数目的增长而减少效率。由于...
分类:
其他好文 时间:
2014-07-11 21:29:34
阅读次数:
357
1在context里定义通知管理器(NotificationManager)NotificationManager notificationManager = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);2...
分类:
移动开发 时间:
2014-07-11 18:54:49
阅读次数:
168
在对话框初始化过程中将设备通知消息注册到winproc中
//Register to receive notification when a USB device is plugged in.
broadcastInterface.dbcc_size =sizeof(DEV_BROADCAST_DEVICEINTERFACE);
broadcastInterface.dbcc_devicet...
分类:
其他好文 时间:
2014-07-10 21:49:41
阅读次数:
338
1keepalived配置文件!ConfigurationFileforkeepalivedglobal_defs{#notification_email{#acassen@firewall.loc#failover@firewall.loc#sysadmin@firewall.loc#}#notification_email_fromAlexandre.Cassen@firewall.loc#smtp_server192.168.200.1#smtp_connect_timeout30router_..
分类:
其他好文 时间:
2014-07-10 18:06:21
阅读次数:
296
最近工作中,发现了一个bug,是和ListView Adapter有关的。产生了FC,描述信息大约是
"The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a b...
分类:
其他好文 时间:
2014-07-08 20:09:41
阅读次数:
199
Notification和NotificationManager1.Broadcast Receiver组件没有提供可视化的界面来显示广播信息。这里我们可以使用Notification和NotificationManager来实现可视化的信息显示。通过使用它们我们可以显示广播信息的内容,图标以及震动...
分类:
移动开发 时间:
2014-07-08 19:27:37
阅读次数:
249
public Notification(int icon, CharSequence tickerText, long when)Deprecated. Use Notification.Builder inst...
分类:
移动开发 时间:
2014-07-06 18:00:10
阅读次数:
165
原文地址:http://developer.android.com/design/wear/principles.html
本篇设计原则提供了一些关于应该怎样规划和评估你的Android Wear应用程序设计的简单思路。
Focus on not stopping the user and all else will follow(专注于不打算用户并让一切后续跟随上来)
...
分类:
移动开发 时间:
2014-07-01 11:28:20
阅读次数:
309