[Android] If drawable doesn't exist don't dispose of it (#4904)

This commit is contained in:
Shane Neuville 2019-01-09 07:06:49 -07:00 коммит произвёл Stephane Delcroix
Родитель 1c27d0bcff
Коммит 884d4a4e14
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -112,6 +112,7 @@ namespace Xamarin.Forms.Platform.Android
{
var drawable = await Context.GetFormsDrawable(source);
menuItem.SetIcon(drawable);
drawable?.Dispose();
}
}
}

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

@ -362,7 +362,7 @@ namespace Xamarin.Forms.Platform.Android
return;
var drawable = await Context.GetFormsDrawable(source);
menuItem.SetIcon(drawable);
drawable.Dispose();
drawable?.Dispose();
}
void SetupMenu()