在XAML中更改ToolBarItem的颜色

问题描述 投票:4回答:2

我在我的应用程序中添加了toolbaritem,但是我没有看到改变其背景和文本颜色的方法。

<ContentPage.ToolbarItems>

    <ToolbarItem Text="About" 
                 Icon="ic_action_more_vert.png"
                 Priority="0"
                 Order="Secondary"
                 Clicked="ToolbarItem_Clicked"/>

    <ToolbarItem Text="Settings"
                 Icon="ic_action_more_vert.png"
                 Priority="0"
                 Order="Secondary"/>

</ContentPage.ToolbarItems>

这是我想改变的。带有白色文字的黑色菜单,想要改变那种bg颜色和文字颜色。知道怎么做到这一点?

enter image description here

xaml xamarin.android xamarin.forms mobile-development
2个回答
5
投票

正如@Gerald Versluis建议的那样,你可以通过Android造型来做到这一点。

首先,你可以在Android项目的styles.xml的values文件夹下找到Resources文件:

enter image description here

在此文件的内部,您可以打开此文件并为您的菜单创建一个样式,如下所示:

<style name="AppToolbarTheme" parent="Theme.AppCompat.NoActionBar">
  <item name="android:colorBackground">#2196F3</item>
  <item name="android:textColor">#000080</item>
</style>

然后在android项目中打开Toolbar.axml

enter image description here

并改变app:popupThemeToolbar像这样:

app:popupTheme="@style/AppToolbarTheme"

更新:

这是Toolbar的代码:

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

5
投票

我找到了一个解决方案:https://forums.xamarin.com/discussion/40529/toolbaritem-textcolor

简单添加到“styles.xml”:

<item name="android:actionMenuTextColor"> @color/orange </item>

我花了好几个小时寻找它..

© www.soinside.com 2019 - 2024. All rights reserved.