Xamarin为android设置工具栏项的位置

前端之家收集整理的这篇文章主要介绍了Xamarin为android设置工具栏项的位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要左侧的ToolbarItem Menu1,但此时两者都在右侧.
我该如何解决这个问题?
<?xml version="1.0" encoding="UTF-8"?>
 <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Dharma.LoginPage">
   <ContentPage.ToolbarItems>
     <ToolbarItem Name="Menu1" Order="Primary" Priority="0" />
     <ToolbarItem Name="Menu2" Order="Primary" Priority="1" />
   </ContentPage.ToolbarItems>
   <ContentPage.Content>
     <StackLayout Padding="30">
       <Label Text="Login Page" FontSize="20" />
     </StackLayout>
   </ContentPage.Content>
 </ContentPage>

解决方法

正如其他人所提到的,这只能使用 custom renderer for your Page来完成.然后你需要移动所有菜单项创建逻辑,因为Xamarin内置的ToolbarItem将导致你的自定义逻辑的各种问题.你可以参考这个 answer,了解如何将你的物品向左移动的更多细节 – 这是一种参与,所以也许最好还是让它们在右边.
原文链接:https://www.f2er.com/android/312703.html

猜你在找的Android相关文章