【问题标题】:Xamarin forms Android toolbar text-colorXamarin 窗体 Android 工具栏文本颜色
【发布时间】:2019-02-03 10:25:53
【问题描述】:

工具栏颜色默认为白色,我想将其更改为蓝色。我几乎可以改变一切,但不是那样。

工具栏.axml

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/colorPrimary"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> 

styles.xml

<style name="MyTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
       <item name="android:textColorPrimary">#1b2b32</item>
      <item name="android:textColorSecondary">#1c4d9e</item>

【问题讨论】:

    标签: xamarin.forms xamarin.android


    【解决方案1】:

    我找到了一种方法。它与我在那里读到的所有答案混合在一起。 我使用了这个答案 Change color of ToolBarItem in XAML@Guillermo 丹尼尔阿里亚斯。 关于styles.XML

    <item name="android:actionMenuTextColor">#1c4d9e</item>
    

    在 App.xml 上(在 xamarin 表单共享项目上)

     <Style TargetType="NavigationPage">
            <Setter Property="BarBackgroundColor" Value="White"/>
            <Setter Property="BarTextColor" Value="#004895"/>
            </Style>
    

    【讨论】:

      【解决方案2】:

      有两种可能的方法:

      • 您更改了NavigationPageBarBackgroundColorBarTextColor。在你的情况下,它会是这样的:

      MainPage = new NavigationPage(new YourPage())
      {
            BarBackgroundColor = Color.White,
            BarTextColor = Color.Blue
      };
      
      • 另一种方法是设置您的 Android 样式。你已经这样做了,但我认为这是错误的。而不是android:textColorPrimaryandroid:textColorSecondary`,试试这样的:

      <style name="MyTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
          <item name="colorPrimary">#FFFFFF</item>
          <item name="colorSecondary">#0000FF</item>
          <item name="colorAccent">#0000FF</item>
      </style>
      

      我认为android: 可能是问题所在,因为我正在按照我所说的那样做,而且它正在工作。

      【讨论】:

      • 非常感谢!我会尝试第二个。让您随时了解情况
      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2021-08-16
      • 2017-09-02
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多