我在我的应用程序中添加了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颜色和文字颜色。知道怎么做到这一点?
正如@Gerald Versluis建议的那样,你可以通过Android造型来做到这一点。
首先,你可以在Android项目的styles.xml
的values文件夹下找到Resources
文件:
在此文件的内部,您可以打开此文件并为您的菜单创建一个样式,如下所示:
<style name="AppToolbarTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:colorBackground">#2196F3</item>
<item name="android:textColor">#000080</item>
</style>
然后在android项目中打开Toolbar.axml
并改变app:popupTheme
的Toolbar
像这样:
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" />
我找到了一个解决方案:https://forums.xamarin.com/discussion/40529/toolbaritem-textcolor
简单添加到“styles.xml”:
<item name="android:actionMenuTextColor"> @color/orange </item>
我花了好几个小时寻找它..