如何更改 Xamarin Forms 中选项卡式页面指示器的颜色

How to change the color of tabbed page indicator in Xamarin Forms

我正在使用 Xamarin Forms 制作一个应用程序。我有一个标签页并希望更改标签指示器的颜色。但是我无法更改默认的白色。

白色指示器示例:

我尝试更改 Tabbar.xml 文件中的 tabIndicatorColor,如下所示:

<android.support.design.widget.TabLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:tabIndicatorColor="@color/colourSelected"
app:tabGravity="fill"
app:tabMode="fixed" />

但这并没有改变它,无论我使用什么颜色,指示器仍然是白色。我该如何解决这个问题?

花了我一段时间,但问题似乎是使用 Android 10.0 编译的错误。在 android 应用程序屏幕中将“使用 Android 版本编译”选项从 10.0 更改为 9.0 解决了该问题。

执行此操作后,tabIndicatorColor 将按预期工作。