Merge pull request #44 from xamarin/fix-bz39499

Fix bz39499
This commit is contained in:
Jason Smith 2016-04-05 11:18:24 -07:00 коммит произвёл kingces95
Родитель 244ee01cfa
Коммит 22e4b3bd6d
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -650,6 +650,8 @@ namespace Xamarin.Forms.Platform.Android
var renderer = _view as IVisualElementRenderer;
renderer.Element.Layout(position.ToFormsRectangle(_layout._context));
// causes the private LAYOUT_REQUIRED flag to be set so we can be sure the Layout call will properly chain through to all children
Measure(position.Width, position.Height);
_layout.LayoutDecorated(_view,
left: position.Left,
top: position.Top,