Example #1
0
  /**
   * Close the view if it's showing, or don't show it if it isn't showing yet. You do not normally
   * have to call this. Normally view will disappear on its own after the appropriate duration.
   */
  public void cancel() {
    mTN.hide();

    try {
      getService().cancelToast(mContext.getPackageName(), mTN);
    } catch (RemoteException e) {
      // Empty
    }
  }
Example #2
0
 /**
  * Close the view if it's showing, or don't show it if it isn't showing yet. You do not normally
  * have to call this. Normally view will disappear on its own after the appropriate duration.
  */
 public void cancel() {
   mTN.hide();
   // TODO this still needs to cancel the inflight notification if any
 }