Class GiftcardsAdapter
- java.lang.Object
-
- androidx.recyclerview.widget.RecyclerView.Adapter<VH>
-
- com.cheetahdigital.uikit.widget.list.ListAdapter<D,VH>
-
- com.cheetahdigital.uikit.widget.list.EndlessListAdapter<Giftcard,GiftcardsViewHolder>
-
- com.cheetahdigital.giftcards.ui.list.GiftcardsAdapter
-
public class GiftcardsAdapter extends EndlessListAdapter<Giftcard,GiftcardsViewHolder>
The Adapter to be used forGiftcardsListFragment
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.cheetahdigital.uikit.widget.list.EndlessListAdapter
EndlessListAdapter.ProgressViewHolder, EndlessListAdapter.ReloadViewHolder
-
Nested classes/interfaces inherited from class com.cheetahdigital.uikit.widget.list.ListAdapter
ListAdapter.EmptyViewHolder
-
-
Field Summary
-
Fields inherited from class com.cheetahdigital.uikit.widget.list.EndlessListAdapter
VIEW_TYPE_PROGRESS, VIEW_TYPE_RELOAD
-
Fields inherited from class com.cheetahdigital.uikit.widget.list.ListAdapter
VIEW_TYPE_HEADER, VIEW_TYPE_NORMAL
-
-
Constructor Summary
Constructors Constructor Description GiftcardsAdapter(java.util.List<Giftcard> dataList)Constructor of this adapterGiftcardsAdapter(java.util.List<Giftcard> dataList, OnListItemClickListener listener)Constructor of this adapter
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidbindNormalViewHolder(GiftcardsViewHolder holder, int position)Abstract method to bind the normal view holder.protected GiftcardsViewHoldercreateNormalViewHolder(android.view.ViewGroup parent, int viewType)Abstract method to create normal view holder.-
Methods inherited from class com.cheetahdigital.uikit.widget.list.EndlessListAdapter
getItemCount, getItemViewType, getReload, isAppending, onBindViewHolder, onCreateViewHolder, setIsAppending, setReload
-
Methods inherited from class com.cheetahdigital.uikit.widget.list.ListAdapter
addAll, addItem, addItem, clear, getDataList, getItemAt, getPlaceHolderResource, insertItems, isListEmpty, removeItem, replaceItemAt, setCustomEmptyMessageResource, setPlaceHolderResource, sort
-
Methods inherited from class androidx.recyclerview.widget.RecyclerView.Adapter
bindViewHolder, createViewHolder, getItemId, hasObservers, hasStableIds, notifyDataSetChanged, notifyItemChanged, notifyItemChanged, notifyItemInserted, notifyItemMoved, notifyItemRangeChanged, notifyItemRangeChanged, notifyItemRangeInserted, notifyItemRangeRemoved, notifyItemRemoved, onAttachedToRecyclerView, onBindViewHolder, onDetachedFromRecyclerView, onFailedToRecycleView, onViewAttachedToWindow, onViewDetachedFromWindow, onViewRecycled, registerAdapterDataObserver, setHasStableIds, unregisterAdapterDataObserver
-
-
-
-
Constructor Detail
-
GiftcardsAdapter
public GiftcardsAdapter(@NonNull java.util.List<Giftcard> dataList)Constructor of this adapter- Parameters:
dataList- list ofGiftcard
-
GiftcardsAdapter
public GiftcardsAdapter(@NonNull java.util.List<Giftcard> dataList, OnListItemClickListener listener)Constructor of this adapter- Parameters:
dataList- list ofGiftcardlistener-OnListItemClickListenerclick listener for items on the list
-
-
Method Detail
-
createNormalViewHolder
protected GiftcardsViewHolder createNormalViewHolder(android.view.ViewGroup parent, int viewType)
Description copied from class:ListAdapterAbstract method to create normal view holder.- Specified by:
createNormalViewHolderin classListAdapter<Giftcard,GiftcardsViewHolder>- Parameters:
parent- used to get resourceviewType- type of view- Returns:
- view holder for non special items
-
bindNormalViewHolder
protected void bindNormalViewHolder(GiftcardsViewHolder holder, int position)
Description copied from class:ListAdapterAbstract method to bind the normal view holder.- Specified by:
bindNormalViewHolderin classListAdapter<Giftcard,GiftcardsViewHolder>- Parameters:
holder- view holder to vindSposition- index of the item
-
-