Android Open Source - ListView-Swipe-to-Delete Item Base Exp List Handler






From Project

Back to project page ListView-Swipe-to-Delete.

License

The source code is released under:

Apache License

If you think the Android project ListView-Swipe-to-Delete listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2013 Steelkiwi Development, Julia Zudikova
 * /*from   w ww  .  j a va2  s  .  c  om*/
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skd.swipetodelete.explist;

import android.widget.ExpandableListView;

/*
 * Represents a base class holding callback methods for the following actions:
 * - expandable list view item is clicked;
 * - expandable list view item is swiped;
 * - expandable list view item is about to be removed;
 * - a menu action is triggered on an expandable list view item.
 */

public abstract class ItemBaseExpListHandler {
  private ExpandableListView list;
  
  public ItemBaseExpListHandler(ExpandableListView list) {
    this.list = list;
  }
  
  public void onGroupClicked(int groupPosition) {}
  
  public void onItemClicked(int groupPosition, int childPosition) {
    if ((list == null) && (((ItemBaseExpListAdapter) list.getExpandableListAdapter()) == null)) { return; }
    
    ((ItemBaseExpListAdapter) list.getExpandableListAdapter()).showItemMenu(groupPosition, childPosition);
  }
  
  public void onItemSwiped(boolean isRight, int groupPosition, int childPosition) {
    if ((list == null) && (((ItemBaseExpListAdapter) list.getExpandableListAdapter()) == null)) { return; }
    
    if (isRight) {
      ((ItemBaseExpListAdapter) list.getExpandableListAdapter()).markToRemove(groupPosition, childPosition);
    } else {
      ((ItemBaseExpListAdapter) list.getExpandableListAdapter()).unmarkToRemove(groupPosition, childPosition);
    }
    ((ItemBaseExpListAdapter) list.getExpandableListAdapter()).notifyDataSetChanged();
  }

  public void onItemRemove(int groupPosition, int childPosition) {
    if ((list == null) && (((ItemBaseExpListAdapter) list.getExpandableListAdapter()) == null)) { return; }
    
    ((ItemBaseExpListAdapter) list.getExpandableListAdapter()).remove(groupPosition, childPosition);
    ((ItemBaseExpListAdapter) list.getExpandableListAdapter()).notifyDataSetChanged();
  }
  
  public abstract void onItemMenuAction(int groupPosition, int childPosition, String action);

  public ExpandableListView getListView() {
    return list;
  }
  
  public boolean hasMarkedToRemoveItems() {
    if ((list == null) && (((ItemBaseExpListAdapter) list.getExpandableListAdapter()) == null)) { return false; }
    
    return ((ItemBaseExpListAdapter) list.getExpandableListAdapter()).hasMarkedToRemove();
  }
  
  public void removeAllItems() {
    if ((list == null) && (((ItemBaseExpListAdapter) list.getExpandableListAdapter()) == null)) { return; }
    
    ((ItemBaseExpListAdapter) list.getExpandableListAdapter()).removeAll();
  }
}




Java Source Code List

com.skd.swipetodelete.ItemBase.java
com.skd.swipetodelete.Item.java
com.skd.swipetodelete.MainActivity.java
com.skd.swipetodelete.explist.ItemBaseExpListAdapter.java
com.skd.swipetodelete.explist.ItemBaseExpListHandler.java
com.skd.swipetodelete.explist.ItemExpListAdapter.java
com.skd.swipetodelete.explist.ItemExpListGestureDetector.java
com.skd.swipetodelete.explist.ItemExpListManager.java
com.skd.swipetodelete.explist.MainExpListActivity.java
com.skd.swipetodelete.list.ItemBaseListAdapter.java
com.skd.swipetodelete.list.ItemBaseListHandler.java
com.skd.swipetodelete.list.ItemListAdapter.java
com.skd.swipetodelete.list.ItemListGestureDetector.java
com.skd.swipetodelete.list.ItemListManager.java
com.skd.swipetodelete.list.MainListActivity.java
com.skd.swipetodelete.menu.MenuItemBuilder.java
com.skd.swipetodelete.menu.MenuItemDesc.java
com.skd.swipetodelete.shake.ShakeDetectActivityListener.java
com.skd.swipetodelete.shake.ShakeDetectActivity.java
com.skd.swipetodelete.utils.DimenUtils.java