mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 18:38:27 +03:00
Add workaround to Android entry renderer (#1658)
This commit is contained in:
parent
ff35e3c022
commit
34dfb0b57e
1 changed files with 10 additions and 1 deletions
|
@ -32,6 +32,15 @@ namespace Bit.Droid.Renderers
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Workaround for bug preventing long-press -> copy/paste on Android 11
|
||||||
|
// See https://issuetracker.google.com/issues/37095917
|
||||||
|
protected override void OnAttachedToWindow()
|
||||||
|
{
|
||||||
|
base.OnAttachedToWindow();
|
||||||
|
Control.Enabled = false;
|
||||||
|
Control.Enabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
// Workaround for failure to disable text prediction on non-password fields
|
// Workaround for failure to disable text prediction on non-password fields
|
||||||
// see https://github.com/xamarin/Xamarin.Forms/issues/10857
|
// see https://github.com/xamarin/Xamarin.Forms/issues/10857
|
||||||
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
|
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
|
||||||
|
|
Loading…
Reference in a new issue