LoginSignup
2
1

More than 5 years have passed since last update.

スワイプで開かないDrawerLayout

Posted at

サボりすぎた。
タイトルまんま。
なお、スワイプで閉じないようにするにはonTouchEventで常にtrue、onInterceptTouchEventで常にfalseを返せばよいでしょう。

class CustomDrawerLayout @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)
    : DrawerLayout(context, attrs, defStyleAttr) {

    override fun onTouchEvent(ev: MotionEvent?): Boolean {
        if (!isDrawerOpen(GravityCompat.START))
            return true
        return super.onTouchEvent(ev)
    }

    override fun onInterceptTouchEvent(ev: MotionEvent?): Boolean {
        if (!isDrawerOpen(GravityCompat.START))
            return false
        return super.onInterceptTouchEvent(ev)
    }
}

株式会社Arrvis

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1