如何在主详细信息页面中自定义选项卡式页面?

时间:2018-10-23 07:48:17

标签: xamarin xamarin.forms xamarin.ios xamarin.android tabbedpage

很长时间以来,我一直无法自定义标签页。

我需要通过标签菜单将汉堡菜单图标移至下一个,并禁用标签页的标题名称(“首页”)(在iOS中,底部标签为顶部标签)

我想我应该使用一些自定义渲染器,但是找不到处理我案件的网站和文档。

请查看并帮助我。 :脸红:

我的页面层次结构:     主/详细页->导航页(详细)->标签页->内容页

As Is Image To Do Image

1 个答案:

答案 0 :(得分:0)

如果只是想在Android中删除标题,也许该方法可以为您提供帮助: 在 AndroidManifest.xml 文件中,添加 theme 属性

<application android:label="xxxxx" 
             android:theme="@style/NoTitle"/>
</application>

并在 Resources / values / styles.xml 中添加 NoTitle 样式

<style name="NoTitle">
   <item name="android:windowNoTitle">true</item>
</style>

,也可以尝试在 Resources / values / styles.xml 中找到taht

<style name="MainTheme" parent="MainTheme.Base">

并添加此项,

 <style name="MainTheme" parent="MainTheme.Base">
    <item name="android:windowNoTitle">true</item>
 </style>

在本机android中,这种方法可以工作。希望这种方法可以为您提供帮助。