Example #1
0
 /**
  * Notifies onOpened
  *
  * @param position Item opened
  * @param toRight If should be opened toward the right
  */
 protected void onOpened(int position, boolean toRight) {
   if (swipeListViewListener != null && position != ListView.INVALID_POSITION) {
     swipeListViewListener.onOpened(position, toRight);
   }
 }
 /**
  * Notifies onOpened
  *
  * @param position Item opened
  * @param toRight If should be opened toward the right
  */
 protected void onOpened(int position, boolean toRight) {
   if (swipeListViewListener != null) {
     swipeListViewListener.onOpened(position, toRight);
   }
 }