aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/ca/allanwang/kau/swipe/SwipeBackLayout.kt
blob: 4f9d54fbb1054ef47a01899a740caef7d09f5e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
/*
 * Copyright 2018 Allan Wang
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package ca.allanwang.kau.swipe

import android.annotation.SuppressLint
import android.app.Activity
import android.content.Context
import android.graphics.Canvas
import android.util.AttributeSet
import android.view.MotionEvent
import android.view.View
import android.view.ViewGroup
import android.widget.FrameLayout
import androidx.core.view.ViewCompat
import ca.allanwang.kau.logging.KL
import ca.allanwang.kau.utils.adjustAlpha
import ca.allanwang.kau.utils.navigationBarColor
import ca.allanwang.kau.utils.statusBarColor
import java.lang.ref.WeakReference
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

/**
 * The layout that handles all the touch events
 * Note that this differs from [ca.allanwang.kau.ui.widgets.ElasticDragDismissFrameLayout]
 * in that nested scrolling isn't considered
 * If an edge detection occurs, this layout consumes all the touch events
 * Use the [swipeEnabled] toggle if you need the scroll events on the same axis
 */
internal class SwipeBackLayout @JvmOverloads constructor(
    context: Context,
    attrs: AttributeSet? = null,
    defStyle: Int = 0
) : FrameLayout(context, attrs, defStyle), SwipeBackContract, SwipeBackContractInternal {

    override val swipeBackLayout: SwipeBackLayout
        get() = this
    /**
     * Threshold of scroll, we will close the activity, when scrollPercent over
     * this value
     */
    override var scrollThreshold = DEFAULT_SCROLL_THRESHOLD
        set(value) {
            if (value >= 1.0f || value <= 0f) {
                throw IllegalArgumentException("Threshold value should be between 0.0 and 1.0")
            }
            field = value
        }

    var activity: Activity? = null
        @SuppressLint("NewApi")
        set(value) {
            field = value
            if (value != null) {
                statusBarBase = value.statusBarColor
                navBarBase = value.navigationBarColor
            }
        }

    override var swipeEnabled = true

    override var disallowIntercept = false

    private lateinit var contentViewRef: WeakReference<View>

    private val dragHelper: ViewDragHelper

    private var scrollPercent: Float = 0f

    private var contentOffset: Int = 0

    /**
     * The set of listeners to be sent events through.
     */
    private var listeners: MutableList<WeakReference<SwipeListener>> = mutableListOf()

    private var scrimOpacity: Float = 0f

    override var scrimColor = DEFAULT_SCRIM_COLOR
        /**
         * Set a color to use for the scrim that obscures primary content while a
         * drawer is open.

         * @param color Color to use in 0xAARRGGBB format.
         */
        set(value) {
            field = value
            invalidate()
        }

    private var statusBarBase: Int = 0
    private var navBarBase: Int = 0

    private val chromeFadeListener: SwipeListener = object : SwipeListener {
        override fun onScroll(percent: Float, px: Int, edgeFlag: Int) {
            if (!transitionSystemBars) return
            activity?.apply {
                statusBarColor = statusBarBase.adjustAlpha(scrimOpacity)
                navigationBarColor = navBarBase.adjustAlpha(scrimOpacity)
            }
        }

        override fun onEdgeTouch() {}

        override fun onScrollToClose(edgeFlag: Int) {}
    }

    private var inLayout: Boolean = false

    override var edgeSize: Int
        get() = dragHelper.edgeSize
        set(value) {
            dragHelper.edgeSize = value
        }

    override var edgeFlag = SWIPE_EDGE_LEFT
        /**
         * We will verify that only one axis is used at a time
         */
        set(value) {
            if (value !in arrayOf(
                    SWIPE_EDGE_TOP,
                    SWIPE_EDGE_BOTTOM,
                    SWIPE_EDGE_LEFT,
                    SWIPE_EDGE_RIGHT
                )
            ) {
                throw IllegalArgumentException("Edge flag is not valid; use one of the SWIPE_EDGE_* values")
            }
            field = value
            horizontal = edgeFlag == SWIPE_EDGE_LEFT || edgeFlag == SWIPE_EDGE_RIGHT
            dragHelper.setEdgeTrackingEnabled(value)
            dragHelper.edgeFlag = value
        }

    private var horizontal = true

    override var minVelocity: Float
        get() = dragHelper.minVelocity
        set(value) {
            dragHelper.minVelocity = value
        }

    override var maxVelocity: Float
        get() = dragHelper.maxVelocity
        set(value) {
            dragHelper.maxVelocity = value
        }

    override var sensitivity: Float
        get() = dragHelper.sensitivity
        set(value) {
            dragHelper.setSensitivity(context, value)
        }

    override var transitionSystemBars: Boolean = true

    init {
        dragHelper = ViewDragHelper.create(this, ViewDragCallback())
        // allow touch from anywhere on the screen
        edgeSize = max(resources.displayMetrics.widthPixels, resources.displayMetrics.heightPixels)
        edgeFlag = edgeFlag
        sensitivity = 0.3f
        addListener(chromeFadeListener)
    }

    override fun setEdgeSizePercent(swipeEdgePercent: Float) {
        edgeSize =
            ((if (horizontal) resources.displayMetrics.widthPixels else resources.displayMetrics.heightPixels) * swipeEdgePercent).toInt()
    }

    /**
     * Add a callback to be invoked when a swipe event is sent to this view.

     * @param listener the swipe listener to attach to this view
     */
    override fun addListener(listener: SwipeListener) {
        listeners.add(WeakReference(listener))
    }

    /**
     * Removes a listener from the set of listeners
     * and scans our list for invalid ones

     * @param listener
     */
    override fun removeListener(listener: SwipeListener) {
        val iter = listeners.iterator()
        while (iter.hasNext()) {
            val l = iter.next().get()
            if (l == null || l == listener) {
                iter.remove()
            }
        }
    }

    /**
     * Checks if a listener exists in our list,
     * and remove invalid ones at the same time
     */
    override fun hasListener(listener: SwipeListener): Boolean {
        val iter = listeners.iterator()
        while (iter.hasNext()) {
            val l = iter.next().get()
            if (l == null) {
                iter.remove()
            } else if (l == listener) {
                return true
            }
        }
        return false
    }

    /**
     * Scroll out contentView and finish the activity
     */
    override fun scrollToFinishActivity() {
        val contentView = contentViewRef.get()
            ?: return KL.e { "KauSwipe cannot scroll to finish as contentView is null. Is onPostCreate called?" }
        val swipeWidth = contentView.width + OVERSCROLL_DISTANCE
        val swipeHeight = contentView.height + OVERSCROLL_DISTANCE
        var top = 0
        var left = 0
        when (edgeFlag) {
            SWIPE_EDGE_LEFT -> left = swipeWidth
            SWIPE_EDGE_TOP -> top = swipeHeight
            SWIPE_EDGE_RIGHT -> left = -swipeWidth
            SWIPE_EDGE_BOTTOM -> top = -swipeHeight
        }
        dragHelper.smoothSlideViewTo(contentView, left, top)
        invalidate()
    }

    override fun onInterceptTouchEvent(event: MotionEvent): Boolean {
        if (!swipeEnabled || disallowIntercept) return false
        return try {
            dragHelper.shouldInterceptTouchEvent(event)
        } catch (e: Exception) {
            false
        }
    }

    @SuppressLint("ClickableViewAccessibility")
    override fun onTouchEvent(event: MotionEvent): Boolean {
        if (!swipeEnabled || disallowIntercept) return false
        try {
            dragHelper.processTouchEvent(event)
        } catch (e: Exception) {
            return false
        }
        return true
    }

    override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
        val contentView = contentViewRef.get()
            ?: return KL.e { "KauSwipe cannot change layout as contentView is null. Is onPostCreate called?" }
        inLayout = true
        val xOffset: Int
        val yOffset: Int
        if (horizontal) {
            xOffset = contentOffset
            yOffset = 0
        } else {
            xOffset = 0
            yOffset = contentOffset
        }
        contentView.layout(
            xOffset,
            yOffset,
            xOffset + contentView.measuredWidth,
            yOffset + contentView.measuredHeight
        )
        inLayout = false
    }

    override fun requestLayout() {
        if (!inLayout) super.requestLayout()
    }

    override fun drawChild(canvas: Canvas, child: View, drawingTime: Long): Boolean {
        val drawContent = child === contentViewRef.get()
        val ret = super.drawChild(canvas, child, drawingTime)
        if (scrimOpacity > 0 && drawContent && dragHelper.viewDragState != ViewDragHelper.STATE_IDLE)
            drawScrim(canvas, child)
        return ret
    }

    private fun drawScrim(canvas: Canvas, child: View) {
        val color = scrimColor.adjustAlpha(scrimOpacity)
        when (edgeFlag) {
            SWIPE_EDGE_LEFT -> canvas.clipRect(0, 0, child.left, height)
            SWIPE_EDGE_RIGHT -> canvas.clipRect(child.right, 0, width, height)
            SWIPE_EDGE_TOP -> canvas.clipRect(0, 0, width, child.top)
            SWIPE_EDGE_BOTTOM -> canvas.clipRect(0, child.bottom, width, height)
        }
        canvas.drawColor(color)
    }

    /**
     * Extract content view, and move it from its parent to our view
     * Then add our view to the content frame
     */
    fun attachToActivity(activity: Activity) {
        if (parent != null) return
        this.activity = activity
        val content = activity.window.decorView.findViewById<ViewGroup>(android.R.id.content)
        val contentChild = content.getChildAt(0)
        content.removeView(contentChild)
        addView(contentChild)
        contentViewRef = WeakReference(contentChild)
        content.addView(this)
    }

    /**
     * Remove ourselves from the viewstack
     */
    fun removeFromActivity(activity: Activity) {
        if (parent == null) return
        val contentChild = getChildAt(0)
        val content = activity.window.decorView.findViewById<ViewGroup>(android.R.id.content)
        content.removeView(this)
        removeView(contentChild)
        content.addView(contentChild)
        contentViewRef.clear()
    }

    override fun computeScroll() {
        scrimOpacity = 1 - scrollPercent
        if (dragHelper.continueSettling(true)) ViewCompat.postInvalidateOnAnimation(this)
    }

    private inner class ViewDragCallback : ViewDragHelper.Callback() {
        private var isScrollOverValid: Boolean = false

        /**
         * Toggles whether we may intercept the touch event
         */
        override fun tryCaptureView(view: View, i: Int): Boolean {
            val ret = dragHelper.isEdgeTouched(edgeFlag, i)
            if (ret) {
                listeners.forEach { it.get()?.onEdgeTouch() }
                isScrollOverValid = true
            }
            return ret
        }

        /**
         * Needs to be bigger than 0 to specify that scrolling is possible horizontally
         */
        override fun getViewHorizontalDragRange(child: View): Int {
            return if (horizontal) 1 else 0
        }

        /**
         * Needs to be bigger than 0 to specify that scrolling is possible vertically
         */
        override fun getViewVerticalDragRange(child: View): Int {
            return if (!horizontal) 1 else 0
        }

        override fun onViewPositionChanged(
            changedView: View,
            left: Int,
            top: Int,
            dx: Int,
            dy: Int
        ) {
            super.onViewPositionChanged(changedView, left, top, dx, dy)
            val contentView = contentViewRef.get()
                ?: return KL.e { "KauSwipe cannot change view position as contentView is null; is onPostCreate called?" }
            // make sure that we are using the proper axis
            scrollPercent = abs(
                if (horizontal) left.toFloat() / contentView.width
                else (top.toFloat() / contentView.height)
            )
            contentOffset = if (horizontal) left else top
            invalidate()
            if (scrollPercent < scrollThreshold && !isScrollOverValid)
                isScrollOverValid = true

            if (scrollPercent <= 1)
                listeners.forEach { it.get()?.onScroll(scrollPercent, contentOffset, edgeFlag) }

            if (scrollPercent >= 1) {
                if (activity?.isFinishing == false) {
                    if (scrollPercent >= scrollThreshold && isScrollOverValid) {
                        isScrollOverValid = false
                        listeners.forEach { it.get()?.onScrollToClose(edgeFlag) }
                    }
                    activity?.finish()
                    activity?.overridePendingTransition(0, 0)
                }
            }
        }

        override fun onViewReleased(releasedChild: View, xvel: Float, yvel: Float) {
            var result = Pair(0, 0)
            if (scrollPercent <= scrollThreshold) {
                // threshold not met; check velocities
                if ((edgeFlag == SWIPE_EDGE_LEFT && xvel > minVelocity) ||
                    (edgeFlag == SWIPE_EDGE_RIGHT && xvel < -minVelocity) ||
                    (edgeFlag == SWIPE_EDGE_TOP && yvel > minVelocity) ||
                    (edgeFlag == SWIPE_EDGE_BOTTOM && yvel < -minVelocity)
                )
                    result = exitCaptureOffsets(edgeFlag, releasedChild)
            } else {
                // threshold met; fling to designated side
                result = exitCaptureOffsets(edgeFlag, releasedChild)
            }
            dragHelper.settleCapturedViewAt(result.first, result.second)
            invalidate()
        }

        private fun exitCaptureOffsets(edgeFlag: Int, view: View): Pair<Int, Int> {
            var top: Int = 0
            var left: Int = 0
            when (edgeFlag) {
                SWIPE_EDGE_LEFT -> left = view.width + OVERSCROLL_DISTANCE
                SWIPE_EDGE_RIGHT -> left = -(view.width + OVERSCROLL_DISTANCE)
                SWIPE_EDGE_TOP -> top = view.height + OVERSCROLL_DISTANCE
                SWIPE_EDGE_BOTTOM -> top = -(view.height + OVERSCROLL_DISTANCE)
            }
            return Pair(left, top)
        }

        override fun clampViewPositionHorizontal(child: View, left: Int, dx: Int): Int {
            return when (edgeFlag) {
                SWIPE_EDGE_RIGHT -> min(0, max(left, -child.width))
                SWIPE_EDGE_LEFT -> min(child.width, max(left, 0))
                else -> 0
            }
        }

        override fun clampViewPositionVertical(child: View, top: Int, dy: Int): Int {
            return when (edgeFlag) {
                SWIPE_EDGE_BOTTOM -> min(0, max(top, -child.height))
                SWIPE_EDGE_TOP -> min(child.height, max(top, 0))
                else -> 0
            }
        }
    }

    companion object {

        const val DEFAULT_SCRIM_COLOR = 0x99000000.toInt()

        /**
         * Default threshold of scroll
         */
        const val DEFAULT_SCROLL_THRESHOLD = 0.3f

        const val OVERSCROLL_DISTANCE = 10
    }
}