Class StaticFilesAdapter
- java.lang.Object
-
- androidx.recyclerview.widget.RecyclerView.Adapter<VH>
-
- com.cheetahdigital.uikit.widget.list.ListAdapter<StaticFile,StaticFileViewHolder>
-
- com.cheetahdigital.content.ui.staticfiles.list.StaticFilesAdapter
-
public class StaticFilesAdapter extends ListAdapter<StaticFile,StaticFileViewHolder>
Adapter used to display a list of Static Files.
-
-
Nested Class Summary
-
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.ListAdapter
VIEW_TYPE_HEADER, VIEW_TYPE_NORMAL
-
-
Constructor Summary
Constructors Constructor Description StaticFilesAdapter(java.util.List<StaticFile> dataList, OnItemClickListener listener)
Constructor forStaticFilesAdapter
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
bindNormalViewHolder(StaticFileViewHolder holder, int position)
Abstract method to bind the normal view holder.protected StaticFileViewHolder
createNormalViewHolder(android.view.ViewGroup parent, int viewType)
Abstract method to create normal view holder.int
getItemCount()
-
Methods inherited from class com.cheetahdigital.uikit.widget.list.ListAdapter
addAll, addItem, addItem, clear, getDataList, getItemAt, getItemViewType, getPlaceHolderResource, insertItems, isListEmpty, onBindViewHolder, onCreateViewHolder, 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
-
StaticFilesAdapter
public StaticFilesAdapter(java.util.List<StaticFile> dataList, OnItemClickListener listener)
Constructor forStaticFilesAdapter
- Parameters:
dataList
- List ofStaticFile
to be displayedlistener
- callback used for item clicks
-
-
Method Detail
-
createNormalViewHolder
protected StaticFileViewHolder createNormalViewHolder(android.view.ViewGroup parent, int viewType)
Description copied from class:ListAdapter
Abstract method to create normal view holder.- Specified by:
createNormalViewHolder
in classListAdapter<StaticFile,StaticFileViewHolder>
- Parameters:
parent
- used to get resourceviewType
- type of view- Returns:
- view holder for non special items
-
bindNormalViewHolder
protected void bindNormalViewHolder(StaticFileViewHolder holder, int position)
Description copied from class:ListAdapter
Abstract method to bind the normal view holder.- Specified by:
bindNormalViewHolder
in classListAdapter<StaticFile,StaticFileViewHolder>
- Parameters:
holder
- view holder to vindSposition
- index of the item
-
getItemCount
public int getItemCount()
- Overrides:
getItemCount
in classListAdapter<StaticFile,StaticFileViewHolder>
-
-