如何更改选项卡式页面图标的颜色?

时间:2019-02-14 12:38:01

标签: android xamarin.forms icons tabbedpage

我正在xamarin.forms android的选项卡式页面上工作,尽管我放置了白色的图像,但它们显示为深红色。

这是Tabbar.xml

<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="@android:color/white"
app:tabGravity="fill"
app:tabMode="fixed"
android:textAllCaps="false" />

我需要在此处进行任何更改以获取所需的图标吗?enter image description here

那两个图像实际上是白色的,如何将它们更改为白色?

1 个答案:

答案 0 :(得分:2)

我已经在视图中添加了以下几行来解决了我的问题。

  xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
        android:TabbedPage.BarItemColor="#66FFFFFF"
        android:TabbedPage.BarSelectedItemColor="White"