Xamarin.Forms内容页面标题颜色更改

时间:2017-07-06 00:09:28

标签: android visual-studio xamarin xamarin.android xamarin.forms

这是我希望在我的所有设备上看到的结果。

enter image description here

但它在安装了Android 5.1的设备上看起来像这样。

enter image description here

我的第三个头衔没有看到。我必须在我的第3页(Yukle Page).cs文件中使用以下定义。我得到了这样的结果,可能是因为我改变了颜色设置。

enter image description here

如何在.cs" white"中制作第3页(Yukle Page)的标题颜色。在Xamarin.Forms?谢谢!

1 个答案:

答案 0 :(得分:0)

您已在Android项目的 Toolbar.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/ThemeToolbar"
    android:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

styles.xml

中定义ThemeToolbar样式
 <style name="ThemeToolbar" parent="Theme.AppCompat.Light">

    <!-- navigation icon color -->
    <item name="colorControlNormal">@color/accent</item>

    <!-- color of the menu overflow icon -->
    <item name="android:textColorSecondary">"define your color code here"</item>
    <item name="android:textColorPrimary">"define color hex code here."</item>
    <item name="colorPrimary">@color/lightGray</item>
  </style>

如需更多信息,请使用以下链接:

https://blog.xamarin.com/material-design-for-your-xamarin-forms-android-apps/