Iは、相対レイアウト方法を使用した代替:
これは、基本的に互いに利用可能なスペースを埋めるに重なる画像スタックレイアウトを使用します。内側のスタックレイアウトは、最後から展開することができます。上向きに拡大する "最大"量(イメージの最大50%など)を作成する場合は、外部レイアウトを「layoutBounds 1,1,1,5」に変更することができます。
以下のコードでは、コピーすれば簡単に見ることができます。 たとえば、背景画像やスタックレイアウト以外のアイテム(フレームなど)を使用するなど、さまざまなオプションを変更できます。
<AbsoluteLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<Image BackgroundColor="Red" AbsoluteLayout.LayoutBounds="1,1,1,1" AbsoluteLayout.LayoutFlags="All" Aspect="AspectFill"></Image>
<StackLayout AbsoluteLayout.LayoutBounds="1,1,1,1" AbsoluteLayout.LayoutFlags="All" BackgroundColor="Transparent">
<StackLayout BackgroundColor="Blue" HorizontalOptions="FillAndExpand" VerticalOptions="EndAndExpand" Orientation="Vertical">
<Label Text="Label 1"></Label>
<Label Text="Label 2"></Label>
</StackLayout>
</StackLayout>
</AbsoluteLayout>
[Xamarinは相対配置位置stacklayoutを下に作成する可能性があります](http://stackoverflow.com/questions/42919941/xamarin-forms-relative-layout-position-stacklayout-at-bottom) –