public static interface

PagedView.OnPagedViewChangeListener

greendroid.widget.PagedView.OnPagedViewChangeListener

Class Overview

Clients may listen to changes occurring on a PagedView via this interface.

Summary

Public Methods
abstract void onPageChanged(PagedView pagedView, int previousPage, int newPage)
Notify the client the current page has changed.
abstract void onStartTracking(PagedView pagedView)
Notify the client the user started tracking.
abstract void onStopTracking(PagedView pagedView)
Notify the client the user ended tracking.

Public Methods

public abstract void onPageChanged (PagedView pagedView, int previousPage, int newPage)

Notify the client the current page has changed.

Parameters
pagedView The PagedView that changed its current page
previousPage The previously selected page
newPage The newly selected page

public abstract void onStartTracking (PagedView pagedView)

Notify the client the user started tracking.

Parameters
pagedView The PagedView the user started to track.

public abstract void onStopTracking (PagedView pagedView)

Notify the client the user ended tracking.

Parameters
pagedView The PagedView the user ended to track.