mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-19 19:49:33 +01:00
return false for ridView.setOnTouchListener
NOT TESTED should allow both click and scrolling? Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
98f8a29eae
commit
8e8fd882f9
@ -505,15 +505,15 @@ public class CallController extends BaseController {
|
||||
pipVideoView.setOnTouchListener(new SelfVideoTouchListener());
|
||||
}
|
||||
|
||||
// gridView.setOnTouchListener(new View.OnTouchListener() {
|
||||
// public boolean onTouch(View v, MotionEvent me) {
|
||||
// int action = me.getActionMasked();
|
||||
// if (action == MotionEvent.ACTION_DOWN) {
|
||||
// showCallControls();
|
||||
// }
|
||||
// return true;
|
||||
// }
|
||||
// });
|
||||
gridView.setOnTouchListener(new View.OnTouchListener() {
|
||||
public boolean onTouch(View v, MotionEvent me) {
|
||||
int action = me.getActionMasked();
|
||||
if (action == MotionEvent.ACTION_DOWN) {
|
||||
showCallControls();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
initGridAdapter();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user