WearableListView.GenericAdapter

public static abstract class WearableListView.GenericAdapter
extends Adapter<T extends WearableListView.ViewHolder>

java.lang.Object
   ↳ android.support.v7.widget.RecyclerView.Adapter<T extends android.support.wearable.view.WearableListView.ViewHolder>
     ↳ android.support.wearable.view.WearableListView.GenericAdapter<T extends android.support.wearable.view.WearableListView.ViewHolder>


This class is deprecated.
for centering and snapping your list items consider using the WearableRecyclerView supported by a SnapHelper or the LinearSnapHelper. For scaling and otherwise modifying the list items based on their location on the screen consider using an WearableRecyclerView.ChildLayoutManager or the CurvedChildLayoutManager.

Base class for adapters providing data for the WearableListView supporting generics. For details refer to RecyclerView.Adapter.

Summary

Public constructors

GenericAdapter()

Inherited methods

final void bindViewHolder(VH arg0, int arg1)
final VH createViewHolder(ViewGroup arg0, int arg1)
int findRelativeAdapterPositionIn(Adapter<? extends RecyclerView.ViewHolder> arg0, RecyclerView.ViewHolder arg1, int arg2)
abstract int getItemCount()
long getItemId(int arg0)
int getItemViewType(int arg0)
final RecyclerView.Adapter.StateRestorationPolicy getStateRestorationPolicy()
final boolean hasObservers()
final boolean hasStableIds()
final void notifyDataSetChanged()
final void notifyItemChanged(int arg0, Object arg1)
final void notifyItemChanged(int arg0)
final void notifyItemInserted(int arg0)
final void notifyItemMoved(int arg0, int arg1)
final void notifyItemRangeChanged(int arg0, int arg1, Object arg2)
final void notifyItemRangeChanged(int arg0, int arg1)
final void notifyItemRangeInserted(int arg0, int arg1)
final void notifyItemRangeRemoved(int arg0, int arg1)
final void notifyItemRemoved(int arg0)
void onAttachedToRecyclerView(RecyclerView arg0)
abstract void onBindViewHolder(VH arg0, int arg1)
void onBindViewHolder(VH arg0, int arg1, List<Object> arg2)
abstract VH onCreateViewHolder(ViewGroup arg0, int arg1)
void onDetachedFromRecyclerView(RecyclerView arg0)
boolean onFailedToRecycleView(VH arg0)
void onViewAttachedToWindow(VH arg0)
void onViewDetachedFromWindow(VH arg0)
void onViewRecycled(VH arg0)
void registerAdapterDataObserver(RecyclerView.AdapterDataObserver arg0)
void setHasStableIds(boolean arg0)
void setStateRestorationPolicy(RecyclerView.Adapter.StateRestorationPolicy arg0)
void unregisterAdapterDataObserver(RecyclerView.AdapterDataObserver arg0)
Object clone()
boolean equals(Object arg0)
void finalize()
final Class<?> getClass()
int hashCode()
final void notify()
final void notifyAll()
String toString()
final void wait(long arg0, int arg1)
final void wait(long arg0)
final void wait()

Public constructors

GenericAdapter

public GenericAdapter ()