Most visited

Recently visited

TabLayout.OnTabSelectedListener

public static interface TabLayout.OnTabSelectedListener

android.support.design.widget.TabLayout.OnTabSelectedListener
Known Indirect Subclasses


Callback interface invoked when a tab's selection state changes.

Summary

Public methods

abstract void onTabReselected(TabLayout.Tab tab)

Called when a tab that is already selected is chosen again by the user.

abstract void onTabSelected(TabLayout.Tab tab)

Called when a tab enters the selected state.

abstract void onTabUnselected(TabLayout.Tab tab)

Called when a tab exits the selected state.

Public methods

onTabReselected

void onTabReselected (TabLayout.Tab tab)

Called when a tab that is already selected is chosen again by the user. Some applications may use this action to return to the top level of a category.

Parameters
tab TabLayout.Tab: The tab that was reselected.

onTabSelected

void onTabSelected (TabLayout.Tab tab)

Called when a tab enters the selected state.

Parameters
tab TabLayout.Tab: The tab that was selected

onTabUnselected

void onTabUnselected (TabLayout.Tab tab)

Called when a tab exits the selected state.

Parameters
tab TabLayout.Tab: The tab that was unselected

Hooray!