Unwanted logs
This commit is contained in:
parent
868d9cf55c
commit
e38cb7c1a6
|
@ -18,7 +18,6 @@ package im.vector.riotx.attachmentviewer
|
||||||
|
|
||||||
import android.graphics.Color
|
import android.graphics.Color
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.util.Log
|
|
||||||
import android.view.GestureDetector
|
import android.view.GestureDetector
|
||||||
import android.view.MotionEvent
|
import android.view.MotionEvent
|
||||||
import android.view.ScaleGestureDetector
|
import android.view.ScaleGestureDetector
|
||||||
|
@ -161,26 +160,26 @@ abstract class AttachmentViewerActivity : AppCompatActivity(), AttachmentEventLi
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.v("ATTACHEMENTS", "================\ndispatchTouchEvent $ev")
|
// Log.v("ATTACHEMENTS", "================\ndispatchTouchEvent $ev")
|
||||||
handleUpDownEvent(ev)
|
handleUpDownEvent(ev)
|
||||||
|
|
||||||
Log.v("ATTACHEMENTS", "scaleDetector is in progress ${scaleDetector.isInProgress}")
|
// Log.v("ATTACHEMENTS", "scaleDetector is in progress ${scaleDetector.isInProgress}")
|
||||||
Log.v("ATTACHEMENTS", "pointerCount ${ev.pointerCount}")
|
// Log.v("ATTACHEMENTS", "pointerCount ${ev.pointerCount}")
|
||||||
Log.v("ATTACHEMENTS", "wasScaled $wasScaled")
|
// Log.v("ATTACHEMENTS", "wasScaled $wasScaled")
|
||||||
if (swipeDirection == null && (scaleDetector.isInProgress || ev.pointerCount > 1 || wasScaled)) {
|
if (swipeDirection == null && (scaleDetector.isInProgress || ev.pointerCount > 1 || wasScaled)) {
|
||||||
wasScaled = true
|
wasScaled = true
|
||||||
Log.v("ATTACHEMENTS", "dispatch to pager")
|
// Log.v("ATTACHEMENTS", "dispatch to pager")
|
||||||
return attachmentPager.dispatchTouchEvent(ev)
|
return attachmentPager.dispatchTouchEvent(ev)
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.v("ATTACHEMENTS", "is current item scaled ${isScaled()}")
|
// Log.v("ATTACHEMENTS", "is current item scaled ${isScaled()}")
|
||||||
return (if (isScaled()) super.dispatchTouchEvent(ev) else handleTouchIfNotScaled(ev)).also {
|
return (if (isScaled()) super.dispatchTouchEvent(ev) else handleTouchIfNotScaled(ev)).also {
|
||||||
Log.v("ATTACHEMENTS", "\n================")
|
// Log.v("ATTACHEMENTS", "\n================")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleUpDownEvent(event: MotionEvent) {
|
private fun handleUpDownEvent(event: MotionEvent) {
|
||||||
Log.v("ATTACHEMENTS", "handleUpDownEvent $event")
|
// Log.v("ATTACHEMENTS", "handleUpDownEvent $event")
|
||||||
if (event.action == MotionEvent.ACTION_UP) {
|
if (event.action == MotionEvent.ACTION_UP) {
|
||||||
handleEventActionUp(event)
|
handleEventActionUp(event)
|
||||||
}
|
}
|
||||||
|
@ -232,7 +231,7 @@ abstract class AttachmentViewerActivity : AppCompatActivity(), AttachmentEventLi
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleTouchIfNotScaled(event: MotionEvent): Boolean {
|
private fun handleTouchIfNotScaled(event: MotionEvent): Boolean {
|
||||||
Log.v("ATTACHEMENTS", "handleTouchIfNotScaled $event")
|
// Log.v("ATTACHEMENTS", "handleTouchIfNotScaled $event")
|
||||||
directionDetector.handleTouchEvent(event)
|
directionDetector.handleTouchEvent(event)
|
||||||
|
|
||||||
return when (swipeDirection) {
|
return when (swipeDirection) {
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
|
|
||||||
package im.vector.riotx.attachmentviewer
|
package im.vector.riotx.attachmentviewer
|
||||||
|
|
||||||
import android.util.Log
|
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
import android.widget.ProgressBar
|
import android.widget.ProgressBar
|
||||||
|
@ -115,7 +114,7 @@ class VideoViewHolder constructor(itemView: View) :
|
||||||
val duration = videoView.duration
|
val duration = videoView.duration
|
||||||
val progress = videoView.currentPosition
|
val progress = videoView.currentPosition
|
||||||
val isPlaying = videoView.isPlaying
|
val isPlaying = videoView.isPlaying
|
||||||
Log.v("FOO", "isPlaying $isPlaying $progress/$duration")
|
// Log.v("FOO", "isPlaying $isPlaying $progress/$duration")
|
||||||
eventListener?.get()?.onEvent(AttachmentEvents.VideoEvent(isPlaying, progress, duration))
|
eventListener?.get()?.onEvent(AttachmentEvents.VideoEvent(isPlaying, progress, duration))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
|
|
||||||
package im.vector.riotx.attachmentviewer
|
package im.vector.riotx.attachmentviewer
|
||||||
|
|
||||||
import android.util.Log
|
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.widget.ProgressBar
|
import android.widget.ProgressBar
|
||||||
import com.github.chrisbanes.photoview.PhotoView
|
import com.github.chrisbanes.photoview.PhotoView
|
||||||
|
@ -30,7 +29,7 @@ class ZoomableImageViewHolder constructor(itemView: View) :
|
||||||
init {
|
init {
|
||||||
touchImageView.setAllowParentInterceptOnEdge(false)
|
touchImageView.setAllowParentInterceptOnEdge(false)
|
||||||
touchImageView.setOnScaleChangeListener { scaleFactor, _, _ ->
|
touchImageView.setOnScaleChangeListener { scaleFactor, _, _ ->
|
||||||
Log.v("ATTACHEMENTS", "scaleFactor $scaleFactor")
|
// Log.v("ATTACHEMENTS", "scaleFactor $scaleFactor")
|
||||||
// It's a bit annoying but when you pitch down the scaling
|
// It's a bit annoying but when you pitch down the scaling
|
||||||
// is not exactly one :/
|
// is not exactly one :/
|
||||||
touchImageView.setAllowParentInterceptOnEdge(scaleFactor <= 1.0008f)
|
touchImageView.setAllowParentInterceptOnEdge(scaleFactor <= 1.0008f)
|
||||||
|
|
Loading…
Reference in New Issue