ghahramani / viewpager

Google Play Music Tabs and View Pager
Apache License 2.0
47 stars 41 forks source link

How to get Current View and Current View Index on Scroll End #4

Closed ankesh27 closed 10 years ago

ankesh27 commented 10 years ago

Can you please help me on this. : How to get Current View and Current View Index on Scroll End(PAGE_SELECTED_EVENT_NAME)

Cheers! Anki

ankesh27 commented 10 years ago

Here is the Solution I found.

tabs.addEventListener(TabsModule.PAGE_SELECTED_EVENT_NAME, function(e) { //Current Tab Position i = e.position; var allViews = arguments[0].source.views; //Current View activeView = allViews[i].view; });