在基于Xamarin表格的Android应用程序中,我有一个问题,即Statusbar正在重叠contentpage。
设置XAML中ContentPage的硬码厚度值可能不适用于每个Android设备。
所以,我在博客上找到的解决方案很少,但没有工作任何人。到处都从xamarin.droid项目中计算现状栏高的地方,并将填充设置为内容页面。
所以有人请建议如何通过计算状态栏的高度在运行时在内容页面上设置填充?
预先感谢。
我找到了解决方案:
为此,我们需要创建自定义渲染器。
请从Xamarin.droid项目中找到以下提到的Pagerenderer的代码:
[assembly: ExportRenderer(typeof(ContentPage), typeof(MyContentPageRenderer))]
名称空间projectName.droid.renderer
{
public class MyContentPageRenderer : PageRenderer
{
public MyContentPageRenderer()
{
}
protected override void OnElementChanged(ElementChangedEventArgs<Page> e)
{
base.OnElementChanged(e);
}
protected override void OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
base.OnElementPropertyChanged(sender, e);
float pixWidth = (float)Resources.DisplayMetrics.WidthPixels;
float fdpWidth = (float)App.Current.MainPage.Width;
float pixPerDp = pixWidth / fdpWidth;
this.Element.Padding = new Thickness(0, MainActivity.StatusBarHeight/pixPerDp, 0, 0);
} } }
,请找到" Main Activitive"代码,如下所述,以进行状态计算:
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
public static int StatusBarHeight;
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
global::Xamarin.Forms.Forms.Init(this, bundle);
if (Build.VERSION.SdkInt >= BuildVersionCodes.Lollipop)
{
Window.DecorView.SystemUiVisibility = 0;
var statusBarHeightInfo = typeof(FormsAppCompatActivity).GetField("_statusBarHeight", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
statusBarHeightInfo.SetValue(this, 0);
Window.SetStatusBarColor(new Android.Graphics.Color(18, 52, 86, 255));
}
LoadApplication(new App());
StatusBarHeight = getStatusBarHeight();
}
public int getStatusBarHeight()
{
int statusBarHeight = 0, totalHeight = 0, contentHeight = 0;
int resourceId = Resources.GetIdentifier("status_bar_height", "dimen", "android");
if (resourceId > 0)
{
statusBarHeight = Resources.GetDimensionPixelSize(resourceId);
}
return statusBarHeight;
}
}
这解决了我的问题。