8b. ListViewSwipeActivity

In this tutorial you will learn how to use ListViewSwipeActivity.



/**
 * This class extends https://github.com/UkiDLucas/ListViewSwipeActivity
 */
public class MainActivity extends ListViewSwipeActivity {



   @Override
   public ListView getListView() {
      return booksListView;
   }



   /**
    * Implement this method to handle detected swipe events.
    */
   @Override
   public void onSwipeRightToLeft(int position) {
      Toast.makeText(this, "Detected  right-to-left swipe.", Toast.LENGTH_LONG).show();
      Log.i(TAG, "Detected  right-to-left swipe." + position);
      Book book = bookDatabase.fetch(bookIndexCards.get(position));
      Log.w(TAG, "Deleting book " + book.toString());
      bookDatabase.delete(book);
      displayAllDataBaseBooks();
   }




   /**
    * Implement this method to handle detected swipe events.
    */
   @Override
   public void onSwipeLeftToRight(int itemSwiped) {
      Toast.makeText(this, "Detected  left-to-right swipe.", Toast.LENGTH_LONG).show();
   }



@Override
public void onItemClickListener(ListAdapter adapter, int position) {
Toast.makeText(this, "Detected a touch/tap on item in position " + position, Toast.LENGTH_LONG).show();



Book book = bookDatabase.fetch(position);
Log.i(TAG, "Deleting book " + position);
bookDatabase.delete(book);
}



As an Amazon Associate I earn from qualifying purchases.

My favorite quotations..


“A man should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.”  by Robert A. Heinlein

"We are but habits and memories we chose to carry along." ~ Uki D. Lucas


Popular Recent Articles