added in version 26.1.0
belongs to Maven artifact com.android.support:wear:28.0.0-alpha1

WearableNavigationDrawerView.WearableNavigationDrawerAdapter

public static abstract class WearableNavigationDrawerView.WearableNavigationDrawerAdapter
extends Object

java.lang.Object
   ↳ android.support.wear.widget.drawer.WearableNavigationDrawerView.WearableNavigationDrawerAdapter


Adapter for specifying the contents of WearableNavigationDrawer.

Summary

Public constructors

WearableNavigationDrawerView.WearableNavigationDrawerAdapter()

Public methods

abstract int getCount()

Returns the number of items in this adapter.

abstract Drawable getItemDrawable(int pos)

Get the drawable associated with the item at pos.

abstract CharSequence getItemText(int pos)

Get the text associated with the item at pos.

void notifyDataSetChanged()

This method should be called by the application if the data backing this adapter has changed and associated views should update.

Inherited methods

From class java.lang.Object

Public constructors

WearableNavigationDrawerView.WearableNavigationDrawerAdapter

added in version 26.1.0
WearableNavigationDrawerView.WearableNavigationDrawerAdapter ()

Public methods

getCount

added in version 26.1.0
int getCount ()

Returns the number of items in this adapter.

Returns
int

getItemDrawable

added in version 26.1.0
Drawable getItemDrawable (int pos)

Get the drawable associated with the item at pos.

Parameters
pos int

Returns
Drawable

getItemText

added in version 26.1.0
CharSequence getItemText (int pos)

Get the text associated with the item at pos.

Parameters
pos int

Returns
CharSequence

notifyDataSetChanged

added in version 26.1.0
void notifyDataSetChanged ()

This method should be called by the application if the data backing this adapter has changed and associated views should update.