Add workaround to Android entry renderer (#1658)

This commit is contained in:
Jake Fink 2021-11-23 08:18:31 -05:00 committed by GitHub
parent ff35e3c022
commit 34dfb0b57e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,16 @@ namespace Bit.Droid.Renderers
Control.PaddingBottom + 20); Control.PaddingBottom + 20);
Control.ImeOptions = Control.ImeOptions | (ImeAction)ImeFlags.NoPersonalizedLearning | Control.ImeOptions = Control.ImeOptions | (ImeAction)ImeFlags.NoPersonalizedLearning |
(ImeAction)ImeFlags.NoExtractUi; (ImeAction)ImeFlags.NoExtractUi;
} }
}
// 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