这是我希望在我的所有设备上看到的结果。
但它在安装了Android 5.1的设备上看起来像这样。
我的第三个头衔没有看到。我必须在我的第3页(Yukle Page).cs文件中使用以下定义。我得到了这样的结果,可能是因为我改变了颜色设置。
如何在.cs" white"中制作第3页(Yukle Page)的标题颜色。在Xamarin.Forms?谢谢!
答案 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/