答案 0 :(得分:0)
需要对此问题进行进一步的说明,如果要将标签栏移到底部(如在iOS中一样),下面的代码会帮助您。
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="XXX.Views.TabbedPage"
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
android:TabbedPage.ToolbarPlacement="Bottom"
android:TabbedPage.BarItemColor="#a39d9f"
android:TabbedPage.BarSelectedItemColor="#007aff"
android:TabbedPage.IsSwipePagingEnabled="false"
BackgroundColor="#f8f8f8"
Padding="5,0,5,0" >
</TabbedPage>