【问题标题】:How do I change bottom tabs background color如何更改底部标签的背景颜色
【发布时间】:2018-07-31 06:30:43
【问题描述】:

我正在处理Xamarin.Forms。我的 android 项目中有 底部标签。选项卡显示默认背景颜色为浅灰色。我需要将标签背景颜色更改为我喜欢的颜色。但我不能这样做。 我正在使用下面的代码

MainPage.xaml 文件

<?xml version="1.0" encoding="utf-8"?>
<MyTabbedPage 
 xmlns="http://xamarin.com/schemas/2014/forms" 
 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
 xmlns:local="clr-namespace:edTheSIS"    
 x:Class="edTheSIS.ParentDashboard">
<local:DairyTabPage  Icon="icon1"></local:DairyTabPage>
<local:MykidTabPage  Icon="icon2" ></local:MykidTab>
<local:EventsPage   Icon="icon3"></local:Events>
<local:AboutPage    Icon="icon4"></local:About>
</MyTabbedPage>

MyTabbedPage.cs 文件

public class MyTabbedPage : Xamarin.Forms.TabbedPage
{
    public MyTabbedPage()
    {
        On<Xamarin.Forms.PlatformConfiguration.Android>().SetToolbarPlacement(ToolbarPlacement.Bottom);
    }
} 

输出我得到截图:

【问题讨论】:

    标签: c# xamarin xamarin.forms tabs


    【解决方案1】:

    你可以试试这个。

    On<Xamarin.Forms.PlatformConfiguration.Android>().SetToolbarPlacement(ToolbarPlacement.Bottom);
    
    On<Xamarin.Forms.PlatformConfiguration.Android>().SetBarSelectedItemColor(Color.White); --> to change the selected color tabitem
    
    On<Xamarin.Forms.PlatformConfiguration.Android>().SetBarItemColor(Color.Gray); --> Gray is the default color but you can also change this to any color.
    

    例子:

    On<Xamarin.Forms.PlatformConfiguration.Android>().SetBarItemColor(Color.Green);
    

    如果你使用 FormsAppCompatActivity,你可以使用

    app:tabIndicatorColor="#FF3300" <!-- Set indicator color here, sets it to red-->
    

    编辑

    您需要创建一个自定义渲染器。

    在 github 上查看 this 示例。

    【讨论】:

    • 感谢您的回答。它根本没有改变背景颜色。它不断变化的图标颜色和选定的项目颜色。
    • 这是标签指示器颜色而不是背景颜色 app:tabIndicatorColor 。此外,底部选项卡不使用原生 android 项目的布局。
    • 是的,我现在明白了。您将需要创建一个自定义渲染器。
    【解决方案2】:

    您可以使用 BarBackgroundColor 属性更改工具栏背景颜色,如docs 中所述

    示例: BarBackgroundColor = Color.LightGray;

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-12-25
      • 2016-08-20
      相关资源
      最近更新 更多