我有一个选项卡式页面,已经容纳了它,但是我觉得它很小,我需要将下栏调高一些
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Mobile.View.Principal"
xmlns:local="clr-namespace:Mobile.View"
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
BackgroundColor="White"
BarTextColor="{StaticResource Gris}"
BarBackgroundColor="white">
<local:Inicio Title="Inicio" Icon="home_icon.png" HeightRequest="30" WidthRequest="30"/>
<local:Consultas Title="Consultas" Icon="search_icon.png"/>
<local:Utilidades Title="Utilidades" Icon="settings_icon.png"/>
<local:Perfil Title="Perfil" Icon="favorites_icon.png"/>
</TabbedPage>
这是背后的代码:
public partial class Principal : Xamarin.Forms.TabbedPage
{
public Principal()
{
InitializeComponent();
On<Xamarin.Forms.PlatformConfiguration.Android>().SetToolbarPlacement(ToolbarPlacement.Bottom);
On<Xamarin.Forms.PlatformConfiguration.Android>().SetBarSelectedItemColor(Color.Black);
On<Xamarin.Forms.PlatformConfiguration.Android>().SetBarItemColor(Color.LightGray);
//On<Xamarin.Forms.PlatformConfiguration.Android>().DisableSwipePaging(); //Disable sliding the pages with your finger.
NavigationPage.SetHasNavigationBar(this, false); // Hide nav bar
}
async void OnPerfilAsync(object sender, EventArgs e)
{
await Navigation.PushAsync(new Perfil());
}
}
这就是应用程序的外观:
酒吧高度属性的名称是什么?
我需要帮助!
答案 0 :(得分:0)
您要在哪个平台上进行更改?您可能需要为要进行此更改的每个平台实现一个custom renderer。
对于iOS,您可以将新的通用类文件添加到名为MyTabbedPageRenderer
的iOS项目中。然后在文件中,在namespace
声明上方添加以下行:
[assembly: Xamarin.Forms.ExportRenderer(typeof(Xamarin.Forms.TabbedPage), typeof(YourNamespace.MyTabbedPageRenderer))]
其中YourNamespace
是MyTabbedPageRenderer
所在的名称空间,即位于该属性下方的名称空间
现在使该类继承自Xamarin.Forms.Platform.iOS.TabbedRenderer
,例如:
public class MyTabbedPageRenderer : Xamarin.Forms.Platform.iOS.TabbedRenderer
然后将以下重写方法添加到该类:
public override void ViewWillLayoutSubviews()
{
base.ViewWillLayoutSubviews();
var newHeight = TabBar.Frame.Height + 50;
CoreGraphics.CGRect tabFrame = TabBar.Frame; //self.TabBar is IBOutlet of your TabBar
tabFrame.Height = newHeight;
tabFrame.Y = View.Frame.Size.Height - newHeight;
TabBar.Frame = tabFrame;
}
以上内容将使iOS上的Tabbar高度比默认值增加50像素。将50
更改为您喜欢的任何值。
对于Android,实际上不需要制作自定义渲染器,因为存在Android布局,可以为TabLayout设置minHeight
。为此,请在Android项目中的resources / layout文件夹中打开Tabbar.axml文件。然后将android:minHeight
属性添加到android.support.design.widget.TabLayout
元素:
<android.support.design.widget.TabLayout
...
android:minHeight="300dp"
/>
这会将高度设置为固定的300像素。将其设置为任何您想要的。
或者,您可以在MainActivity.OnCreate
方法中设置高度。下面是从模板Xam.Forms TabbedPage
项目开始的。在LoadApplication(new App())
调用后放置以下内容:
Android.Support.Design.Widget.TabLayout tabBar = FindViewById<Android.Support.Design.Widget.TabLayout>(Resource.Id.sliding_tabs);
tabBar.SetMinimumHeight(300);
在Tabbar.axml文件中,将Resource.Id
更改为android:id
的{{1}}