Devlight / NavigationTabStrip

Navigation tab strip with smooth interaction.
Apache License 2.0
2.24k stars 313 forks source link

setOnTabStripSelectedIndexListener Sample #13

Closed shahbazly closed 8 years ago

shahbazly commented 8 years ago

Hi! Please, can you show an example of setOnTabStripSelectedIndexListener? Unfortunately, I can't understand how it works :(

GIGAMOLE commented 8 years ago

Hello. Thanks. Sure. You welcome:

navigationTabStrip.setOnTabStripSelectedIndexListener(new NavigationTabStrip.OnTabStripSelectedIndexListener() { @Override public void onStartTabSelected(final String title, final int index) { // Trigger when you click on tab, seems like onClick() }

        @Override
        public void onEndTabSelected(final String title, final int index) {

// Trigger when strip finish move and select index } });