mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18: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
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue