aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/ca/allanwang/kau/swipe/SwipeBackPage.kt
blob: 81ddb620ab1181e7b372031146b266a69f0297a2 (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
package ca.allanwang.kau.swipe

import android.app.Activity
import android.graphics.Color
import android.graphics.drawable.ColorDrawable
import android.view.ViewGroup

/**
 * Created by Mr.Jude on 2015/8/3.
 *
 * Updated by Allan Wang on 2017/07/05
 */
class SwipeBackPage(activity: Activity) : SwipeBackContract by SwipeBackLayout(activity) {

    var activity: Activity? = activity
    var slider: RelativeSlider

    /**
     * initializing is the equivalent to onCreate
     * since that is when the page is created
     */
    init {
        activity.window.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
        activity.window.decorView.setBackgroundColor(Color.TRANSPARENT)
        swipeBackLayout.layoutParams = ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)
        slider = RelativeSlider(this)
    }

    fun onPostCreate() {
        handleLayout()
    }

    override var swipeEnabled: Boolean
        get() = swipeBackLayout.swipeEnabled
        set(value) {
            swipeBackLayout.swipeEnabled = value
            handleLayout()
        }

    private fun handleLayout() {
        if (swipeEnabled) swipeBackLayout.attachToActivity(activity!!)
        else swipeBackLayout.removeFromActivity(activity!!)
    }

    fun setClosePercent(percent: Float): SwipeBackPage {
        swipeBackLayout.scrollThreshold = percent
        return this
    }

}

interface SwipeBackContract {
    /**
     * Toggle main touch intercept
     */
    var swipeEnabled: Boolean
    /**
     * Set the background color for the outside of the page
     * This dynamically fades as the page gets closer to exiting
     */
    var scrimColor: Int
    val swipeBackLayout: SwipeBackLayout
    var edgeSize: Int
    /**
     * Set the flag for which edge the page is scrolling from
     */
    var edgeFlag: Int
    /**
     * Set the scrolling threshold for wish a page is deemed closing
     */
    var scrollThreshold: Float
    var disallowIntercept: Boolean
    /**
     * Set the min velocity of the view drag helper
     */
    var minVelocity: Float
    /**
     * Set the max velocity of the view drag helper
     */
    var maxVelocity: Float
    /**
     * Set the sensitivity of the view drag helper
     */
    var sensitivity: Float
    /**
     * Dynamically change the alpha for the status bar and nav bar
     * as the page scrolls
     */
    var transitionSystemBars: Boolean

    /**
     * Sets edge size based on screen size
     */
    fun setEdgeSizePercent(swipeEdgePercent: Float)
    fun addListener(listener: SwipeListener)
    fun removeListener(listener: SwipeListener)
    fun scrollToFinishActivity()
}