Example #1
0
 public void systemNotificationCancel(int id) {
   if (null == mNotifyMgr) {
     mNotifyMgr = new ENotification(mContext);
   }
   mNotifyMgr.cancelOne(id);
 }
Example #2
0
 public void systemNotification(String title, String msg) {
   if (null == mNotifyMgr) {
     mNotifyMgr = new ENotification(mContext);
   }
   mNotifyMgr.notification(title, msg);
 }