Package com.pspdfkit.ui.thumbnail
Interface ThumbnailAdapter.OnThumbnailClickListener
-
- All Implemented Interfaces:
public interface ThumbnailAdapter.OnThumbnailClickListener
Listener for receiving page changes caused by the user touching the ThumbnailAdapter.
-
-
Method Summary
Modifier and Type Method Description abstract void
onThumbnailChanged(@NonNull() View view, @IntRange(from = 0) int pageIndex)
Called whenever the user touched on a thumbnail, selecting a different page. -
-
Method Detail
-
onThumbnailChanged
abstract void onThumbnailChanged(@NonNull() View view, @IntRange(from = 0) int pageIndex)
Called whenever the user touched on a thumbnail, selecting a different page. The thumbnail bar won't update its internal state (i.e. the currently shown highlighted page) after calling this method, but will wait for a subsequent call to onPageChanged before updating.
- Parameters:
view
- View that triggered this event.pageIndex
- Number of the selected page.
-
-
-
-