The Android GLView should be transparent to be consistent

Fixes #546
This commit is contained in:
Matthew Leibowitz 2018-11-24 14:33:26 +02:00
Родитель d814a432ee
Коммит d724b9e491
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3650EBE4AA155AF9
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -34,5 +34,15 @@ namespace SkiaSharp.Views.Forms
? Rendermode.Continuously
: Rendermode.WhenDirty;
}
protected override SKNativeView CreateNativeControl()
{
var view = base.CreateNativeControl();
// Force the opacity to false for consistency with the other platforms
view.SetOpaque(false);
return view;
}
}
}