-
public interface PreviewThumbnailView.OnPreviewChangeListener
This PreviewThumbnailView's listener
-
-
Method Summary
Modifier and Type Method Description abstract void
onStartPreview(@NonNull() PreviewThumbnailView previewThumbnailView, int progress)
Callback triggered when the Preview Thumbnail process has started abstract void
onStopPreview(@NonNull() PreviewThumbnailView previewThumbnailView, int progress)
Callback triggered when the Preview Thumbnail process has stopped abstract void
onPreview(@NonNull() PreviewThumbnailView previewThumbnailView, int progress, boolean fromUser)
Callback triggered when the Preview Thumbnail process is in progress -
-
Method Detail
-
onStartPreview
abstract void onStartPreview(@NonNull() PreviewThumbnailView previewThumbnailView, int progress)
Callback triggered when the Preview Thumbnail process has started
- Parameters:
previewThumbnailView
- the PreviewThumbnailView triggering this actionprogress
- the PreviewThumbnailView's current progress
-
onStopPreview
abstract void onStopPreview(@NonNull() PreviewThumbnailView previewThumbnailView, int progress)
Callback triggered when the Preview Thumbnail process has stopped
- Parameters:
previewThumbnailView
- the PreviewThumbnailView triggering this actionprogress
- the PreviewThumbnailView's current progress
-
onPreview
abstract void onPreview(@NonNull() PreviewThumbnailView previewThumbnailView, int progress, boolean fromUser)
Callback triggered when the Preview Thumbnail process is in progress
- Parameters:
previewThumbnailView
- the PreviewThumbnailView triggering this actionprogress
- the PreviewThumbnailView's current progressfromUser
- indicates whether this action was triggered by the user or programmatically
-
-
-
-