mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 03:59:35 +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());
|
pipVideoView.setOnTouchListener(new SelfVideoTouchListener());
|
||||||
}
|
}
|
||||||
|
|
||||||
// gridView.setOnTouchListener(new View.OnTouchListener() {
|
gridView.setOnTouchListener(new View.OnTouchListener() {
|
||||||
// public boolean onTouch(View v, MotionEvent me) {
|
public boolean onTouch(View v, MotionEvent me) {
|
||||||
// int action = me.getActionMasked();
|
int action = me.getActionMasked();
|
||||||
// if (action == MotionEvent.ACTION_DOWN) {
|
if (action == MotionEvent.ACTION_DOWN) {
|
||||||
// showCallControls();
|
showCallControls();
|
||||||
// }
|
}
|
||||||
// return true;
|
return false;
|
||||||
// }
|
}
|
||||||
// });
|
});
|
||||||
|
|
||||||
initGridAdapter();
|
initGridAdapter();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user