Fix single tap on video previews.

This commit is contained in:
Alex Hart
2022-09-01 13:16:10 -03:00
parent 4620eade58
commit b6546f3ae3
2 changed files with 9 additions and 1 deletions

View File

@@ -196,6 +196,15 @@ public class VideoPlayer extends FrameLayout {
}
}
@Override
public void setOnClickListener(@Nullable OnClickListener l) {
if (this.exoView != null) {
this.exoView.setClickable(false);
}
super.setOnClickListener(l);
}
public @Nullable View getControlView() {
return this.exoControls;
}