我在Xamarin应用程序中使用TabbedPage类型。我的图标和内容运行正常。
问题:我看不出找到设置标签宽度的任何方法。我希望标签的宽度能够与显示它们的屏幕相匹配
我曾尝试使用适用于Android的TabbedPageRenderer,但它们的属性似乎都不是非零的,因此我无法手动执行计算
<?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:IGNORETHIS="clr-namespace:IGNORETHIS;assembly=IGNORETHIS"
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
x:Class="IGNORETHIS" <!-- INTENTIONAL -->
android:TabbedPage.ToolbarPlacement="Bottom">
<!-- Account Page -->
<ContentPage Title="Account"
Icon="AccountTabIcon.png">
<StackLayout>
<!-- Blabla some stuff -->
</StackLayout>
</ContentPage>
<!-- Settings Page -->
<ContentPage Title="Settings"
Icon="SettingsTabIcon.png"/>
</TabbedPage>
我想要的是一组占据整个屏幕宽度的选项卡。这应该是默认行为!