在Xamarin.Forms中默認的TabbedPage是在頂端的
之前呢,大部分都是借助第三方庫BottomTabbedPage來實現(我用這個的時候回閃退 = =)
但是在Xamarin.Forms3.1更新了支持底部導航欄,效果如下

Android底部標簽實現代碼(注:加入代碼后可能會提示錯誤,但不影響正常編譯和使用)
1 <TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" 2 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 3 xmlns:views="clr-namespace:TheLittleThingsPlayground.Views" 4 x:Class="TheLittleThingsPlayground.Views.MainPage" 5 BarBackgroundColor="#F1F1F1" 6 xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core" 7 android:TabbedPage.ToolbarPlacement="Bottom" 8 android:TabbedPage.BarItemColor="#666666" 9 android:TabbedPage.BarSelectedItemColor="Black">
加入這段代碼后TabbedPage就會出現在底部了
源代碼 https://github.com/davidortinau/TheLittleThingsPlayground