首页 > 解决方案 > 删除标题视图 xamarin 表单中的左侧空格

问题描述

我在删除标题视图中多余的剩余空间时遇到问题,如下图所示,请在此处查看屏幕截图

Ps:我正在使用标签页,该栏是导航标题视图。

标签: xamarin.formsxamarin.androidnavigationbartabbedpagetitleview

解决方案


Toolbar.xml在您的 Android 部分中设置下面的 xml 。

app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp" 

在此处输入图像描述

不要忘记在你的Toolbar.xaml.

xmlns:app="http://schemas.android.com/apk/res-auto"

并检查下面的代码,它需要添加到MainActivity.cs.

ToolbarResource = Resource.Layout.Toolbar;

用法:

<NavigationPage.TitleView>
    <Label Text="Repositories" />
</NavigationPage.TitleView>

在此处输入图像描述


推荐阅读