Fix issue #2634. Android: Draw no border if no BorderColor is set (#2684)

- fixes #2634
This commit is contained in:
Philippe Leybaert 2018-05-14 13:30:58 -05:00 коммит произвёл Stephane Delcroix
Родитель 5fdec77627
Коммит 7bcdf6d6b4
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -247,7 +247,11 @@ namespace Xamarin.Forms.Platform.Android.FastRenderers
return;
Color borderColor = Element.BorderColor;
_backgroundDrawable.SetStroke(3, borderColor.IsDefault ? AColor.White : borderColor.ToAndroid());
if (borderColor.IsDefault)
_backgroundDrawable.SetStroke(0, AColor.Transparent);
else
_backgroundDrawable.SetStroke(3, borderColor.ToAndroid());
}
void UpdateShadow()