mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 13:35:33 +03:00
fix that call controls appear on touch when connecting
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
e2668c4000
commit
9499b8117b
1 changed files with 11 additions and 0 deletions
|
@ -530,6 +530,17 @@ public class CallActivity extends CallBaseActivity {
|
|||
}
|
||||
});
|
||||
|
||||
// TODO maybe not necessary if it doesnt disappear
|
||||
binding.conversationRelativeLayout.setOnTouchListener(new View.OnTouchListener() {
|
||||
public boolean onTouch(View v, MotionEvent me) {
|
||||
int action = me.getActionMasked();
|
||||
if (action == MotionEvent.ACTION_DOWN) {
|
||||
animateCallControls(true, 0);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
animateCallControls(true, 0);
|
||||
|
||||
initGridAdapter();
|
||||
|
|
Loading…
Reference in a new issue