web-dev-qa-db-ja.com

Kotlinでスワイプジェスチャーを実装する

Kotlinで作成したアプリケーションにジェスチャー検出器を実装しようとしています。私はこの質問のコメントをフォローしています: link

そこで、OnSwipeTouchListenerクラスを作成し、クラスにリスナーを実装しました。

class DetailActivity : AppCompatActivity() {

override fun onBackPressed() {
    super.onBackPressed()
}

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.detail_activity)
    window.decorView.setOnTouchListener(object: OnSwipeTouchListener(this@DetailActivity) {
        override fun onSwipeLeft() {
            onBackPressed()
        }
        override fun onSwipeRight() {
            onBackPressed()
        }
    })
}

問題は、それが認識されず、エラーが発生しないことです。プログラムが2つのオーバーライドメソッドに入るかどうかを確認するためにLog.iを配置しようとしましたが、何も出力されません。 Viewの問題なのでしょうか?

編集:これはリスナーコードです:

    open class OnSwipeTouchListener(ctx: Context) : OnTouchListener {

    private val gestureDetector: GestureDetector

    companion object {

        private val SWIPE_THRESHOLD = 100
        private val SWIPE_VELOCITY_THRESHOLD = 100
    }

    init {
        gestureDetector = GestureDetector(ctx, GestureListener())
    }

    override fun onTouch(v: View, event: MotionEvent): Boolean {
        return gestureDetector.onTouchEvent(event)
    }

    private inner class GestureListener : SimpleOnGestureListener() {


        override fun onDown(e: MotionEvent): Boolean {
            return true
        }

        override fun onFling(e1: MotionEvent, e2: MotionEvent, velocityX: Float, velocityY: Float): Boolean {
            var result = false
            try {
                val diffY = e2.y - e1.y
                val diffX = e2.x - e1.x
                if (Math.abs(diffX) > Math.abs(diffY)) {
                    if (Math.abs(diffX) > SWIPE_THRESHOLD && Math.abs(velocityX) > SWIPE_VELOCITY_THRESHOLD) {
                        if (diffX > 0) {
                            onSwipeRight()
                        } else {
                            onSwipeLeft()
                        }
                        result = true
                    }
                } else if (Math.abs(diffY) > SWIPE_THRESHOLD && Math.abs(velocityY) > SWIPE_VELOCITY_THRESHOLD) {
                    if (diffY > 0) {
                        onSwipeBottom()
                    } else {
                        onSwipeTop()
                    }
                    result = true
                }
            } catch (exception: Exception) {
                exception.printStackTrace()
            }

            return result
        }


    }

    open fun onSwipeRight() {}

    open fun onSwipeLeft() {}

    open fun onSwipeTop() {}

    open fun onSwipeBottom() {}
}
2
Babbara

私はあなたのコードを次のように試しました:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:id="@+id/main">

</androidx.constraintlayout.widget.ConstraintLayout>

そして

main.setOnTouchListener(object: OnSwipeTouchListener(this@Main3Activity) {
        override fun onSwipeLeft() {
            onBackPressed()
        }
        override fun onSwipeRight() {
            onBackPressed()
        }
    })

できます。おそらく問題はdecorviewです

2
Kasım Özdemir