有没有办法阻止更长的 Xamarin Shell 选项卡标题被截断?

Is there a way to stop longer Xamarin Shell tab titles being truncated?

我正在使用 Xamarin 中的选项卡栏进行一些测试 Shell。如果选项卡的标题太长,即使显然有足够的空间来显示整个标题,它也会被截断。

有没有办法阻止文本被截断?

在我附加的图像示例中,由于字体大小增加,只有在选择选项卡时才会发生这种情况。但如果标题足够长,即使未选中选项卡也可能发生。

Longer title fitting on unselected tab.

Longer title being truncated when selected.

在 styles.xml 中,在您的 MainTheme.Base 风格中添加 10sp。您还可以通过更改 colorPrimary 选择时更改颜色。

 <style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">

    <!-- colorPrimary is used for the default action bar background -->
    <item name="colorPrimary">#3B9894</item>

    <item name="android:textAllCaps">false</item>

    <item name="colorAccent">#544B99</item>
    <item name="android:textSize">14sp</item>
  </style>