parent
a75821ed06
commit
c653563512
|
@ -40,8 +40,8 @@ android {
|
|||
applicationId "kr.co.vividnext.sodalive"
|
||||
minSdk 23
|
||||
targetSdk 33
|
||||
versionCode 24
|
||||
versionName "1.7.0"
|
||||
versionCode 25
|
||||
versionName "1.8.0"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
|
|
@ -299,6 +299,14 @@ class LiveRoomCreateActivity : BaseActivity<ActivityLiveRoomCreateBinding>(
|
|||
false
|
||||
}
|
||||
|
||||
binding.etMenu.setOnTouchListener { view, motionEvent ->
|
||||
view.parent.parent.requestDisallowInterceptTouchEvent(true)
|
||||
if ((motionEvent.action and MotionEvent.ACTION_MASK) == MotionEvent.ACTION_UP) {
|
||||
view.parent.parent.requestDisallowInterceptTouchEvent(false)
|
||||
}
|
||||
false
|
||||
}
|
||||
|
||||
binding.ivSwitch.setOnClickListener {
|
||||
viewModel.toggleIsActivateMenu()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue