public
static
interface
TabLayout.OnTabSelectedListener
android.support.design.widget.TabLayout.OnTabSelectedListener |
Known Indirect Subclasses |
Callback interface invoked when a tab's selection state changes.
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. |
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.
|
void onTabSelected (TabLayout.Tab tab)
Called when a tab enters the selected state.
Parameters | |
---|---|
tab |
TabLayout.Tab :
The tab that was selected
|
void onTabUnselected (TabLayout.Tab tab)
Called when a tab exits the selected state.
Parameters | |
---|---|
tab |
TabLayout.Tab :
The tab that was unselected
|