我正在使用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>
如果我们选择“电子邮件”,我想更改“电子邮件”的文本颜色。 我该怎么办?
答案 0 :(得分:2)
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" />
希望这可以解决您的问题。