Example #1
0
 /** Notify te view is closed to the left to the DraggableListener */
 private void notifyCloseToLeftListener() {
   if (listener != null) {
     listener.onClosedToLeft();
   }
 }
Example #2
0
 /** Notify te view is minimized to the DraggableListener */
 private void notifyMinimizeToListener() {
   if (listener != null) {
     listener.onMinimized();
   }
 }