-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed problems with return animation and de-zooming
- Loading branch information
luca
committed
Dec 17, 2019
1 parent
7f7688a
commit 2efa84e
Showing
2 changed files
with
52 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
.../src/main/java/com/kirkbushman/largeimageview/sampleapp/utils/SimpleTransitionListener.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.kirkbushman.largeimageview.sampleapp.utils | ||
|
||
import android.transition.Transition | ||
|
||
abstract class SimpleTransitionListener : Transition.TransitionListener { | ||
|
||
override fun onTransitionStart(transition: Transition?) {} | ||
override fun onTransitionPause(transition: Transition?) {} | ||
override fun onTransitionCancel(transition: Transition?) {} | ||
override fun onTransitionResume(transition: Transition?) {} | ||
override fun onTransitionEnd(transition: Transition?) {} | ||
} |