我创建了一个TabbedPage
,其中ContentPages
为TabbedPage.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
我的问题是
ResourceDictionary
中newIP["SubnetMask"] = new String[] { textBox1.Text };
的字体大小?答案 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>