У меня Master
Layout
из MasterDetailPage
. Который показывает вывод, как ожидалось в окне предварительного просмотра Xamarin.Forms Но когда я запускаю его на Android Emulator, вывод немного отличается. Как я могу решить эту проблему? Мой код
<MasterDetailPage.Master>
<ContentPage Title="MasterP" >
<StackLayout BackgroundColor="#01796F">
<StackLayout Margin="25,10,25,0" Padding="0,30,0,0">
<Image BackgroundColor="Accent" Aspect="AspectFill" Source="Enrich.png"></Image>
</StackLayout>
<StackLayout Margin="20,10,20,0" >
<Button Margin="20,5,20,0" HorizontalOptions="FillAndExpand" Text="Menu 1"></Button>
<Button Margin="20,0,20,0" HorizontalOptions="FillAndExpand" Text="Menu 1"></Button>
<Button Margin="20,0,20,0" HorizontalOptions="FillAndExpand" Text="Menu 1"></Button>
</StackLayout>
</StackLayout>
</ContentPage>
</MasterDetailPage.Master>
Выход: