xamarin表单更改选定的Tab颜色Text



我正在使用Xamarin跨平台选项卡页面。我想更改选定的选项卡颜色文本。我可以更改背景和文字颜色。我需要更改所选的选项卡颜色文本这是我的代码

var page = new tabPage()
{
BarBackgroundColor = Color.WhiteSmoke,
BarTextColor = Color.Black
};

<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ABCAPP.Views.MainPage"  >
<!--Pages can be added as references or inline-->
<ContentPage Title="ALL"  >
</ContentPage>
<ContentPage Title="Email"   >
</ContentPage>
<ContentPage Title="phoe"   >
</ContentPage>

如果我们选择"电子邮件",我想更改"电子邮件"的文本颜色。我该怎么做?

Xaml代码:

<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:App3"
x:Class="App3.MainPage"
BarBackgroundColor="Yellow"> 
<local:Page1/>
<local:Page1/>
</TabbedPage>

对于Android:

使用app:tabSelectedTextColor="@color/accent_material_light"app:tabTextColor="@color/accent_material_dark"属性更改所选选项卡的文本颜色。(从您提供的代码中删除BarTextColor = Color.Black。(

在资源文件夹内->布局文件夹->Tabbar.axml
放置在代码下方:

<?xml version="1.0" encoding="utf-8"?>
<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:tabSelectedTextColor="@color/accent_material_light"
app:tabTextColor="@color/accent_material_dark"
app:tabMode="fixed" />

希望这能解决你的问题。

相关内容

  • 没有找到相关文章

最新更新