Xamarin表单 - 如何在ResourceDictionary中更改TabbedPage标题字体大小

时间:2018-04-08 07:13:34

标签: xaml user-interface xamarin.forms resourcedictionary

我创建了一个TabbedPage,其中ContentPagesTabbedPage.Children Title Title。 iOS应用中提供的Title非常完美且能够阅读。但是,在Android中,即使我在Android设备的设置中更改了首选项字体大小,<?xml version="1.0" encoding="UTF-8"?> <TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:MyApplication.Views;assembly=MyApplication" x:Class="Demo.TabbedPageView" Title="My Application"> <TabbedPage.Children> <local:View One/> <local:View Two/> <local:View Three/> <local:View Four/> </TabbedPage.Children> </TabbedPage> 字体太大也无法显示。

这是我的TabbedPage XAML文件

Title

TabbedPage屏幕截图

iOS - https://ibb.co/fmCZcH

Android - https://ibb.co/drEQjx

我的问题是

  1. 如何更改ResourceDictionarynewIP["SubnetMask"] = new String[] { textBox1.Text }; 的字体大小?
  2. 在这种情况下,还有其他方法可以实现相同的目标吗?

1 个答案:

答案 0 :(得分:2)

您可以使用自定义样式并更改选项卡的文本大小。
见这How to use custom style for tab

改变风格:

<style name="CustomTab"
   parent="@android:style/Widget.Holo.ActionBar.TabText">
<item name="android:textSize">5sp</item>