Xamarin.Forms 3.1.0+版本 Android 原生支持底部导航栏

Posted Devin.Zhou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xamarin.Forms 3.1.0+版本 Android 原生支持底部导航栏相关的知识,希望对你有一定的参考价值。

Xamarin.Forms 3.1.0+版本 android 原生支持底部导航栏

Xamarin.Forms 3.1.0以上版本终于支持Android底部导航栏啦,可以不用第三方的支持库了。

https://developer.xamarin.com/releases/xamarin-forms/xamarin-forms-3.1/3.1.0/

C#代码:

On<Android>().SetToolbarPlacement(ToolbarPlacement.Bottom);

Xaml代码:

<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" 
            xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 
            xmlns:views="clr-namespace:TheLittleThingsPlayground.Views" 
            x:Class="TheLittleThingsPlayground.Views.MainPage"
            BarBackgroundColor="#F1F1F1"
            xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
            android:TabbedPage.ToolbarPlacement="Bottom"
            android:TabbedPage.BarItemColor="#666666"
            android:TabbedPage.BarSelectedItemColor="Black">

 

以上是关于Xamarin.Forms 3.1.0+版本 Android 原生支持底部导航栏的主要内容,如果未能解决你的问题,请参考以下文章

Xamarin Forms - 自定义地图标记不可见

Xamarin.Forms 5.0 来了

Xamarin Forms中的Android,IOS和UWP版本

Xamarin.Forms中DependencyService的使用

如何在我的 Xamarin.Forms 应用程序的 UWP 版本中显示图像

Xamarin.Forms 问题中的流利设计