Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/Android/Renderers/CustomEditorRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ public class CustomEditorRenderer : EditorRenderer
public CustomEditorRenderer(Context context)
: base(context)
{ }

// Workaround for issue described here:
// https://github.com/xamarin/Xamarin.Forms/issues/8291#issuecomment-617456651
protected override void OnAttachedToWindow()
{
base.OnAttachedToWindow();
EditText.Enabled = false;
EditText.Enabled = true;
}

protected override void OnElementChanged(ElementChangedEventArgs<Editor> e)
{
Expand Down