3llomi / RecordView

A Simple Audio Recorder View with "hold to Record Button" and "Swipe to Cancel " Like WhatsApp
Apache License 2.0
364 stars 108 forks source link

Doesn't work well in BottomSheetDialogFragment #49

Closed JobGetabu closed 3 years ago

JobGetabu commented 4 years ago

When added to a BottomSheetDialogFragment view Once clicked does not detect click end gesture

3llomi commented 4 years ago

Hey @JobGetabu, probably because touchEvents intercepting with each other, can you try to apply the same idea as here #17 ?

JobGetabu commented 4 years ago

Tried different ways & touchEvents But the slide to Cancel gesture fails/hangs

3llomi commented 4 years ago

can you send me a sample project so I can take a look?

3llomi commented 3 years ago

after some testing i've noticed that touches events intercepts with each other. what i am thinking of is to use BottomSheetBehavior and setDraggable to false when recording. for example in onStart setDraggable to false, and on Finish set it back to true.

feel free to re-open this issue if it didn't work.