Xamarin.Forms Get the screen height when you start the app

Source: Internet
Author: User

When you start the app, get the screen width high App.cs inside add: Public Static Double ScreenWidth; Public Static Double ScreenHeight;Android under MainActivity.cs inside add:protected Override void OnCreate(Bundle Bundle){Tablayoutresource = Resource.Layout.Tabbar;Toolbarresource = Resource.Layout.Toolbar;Base.OnCreate(Bundle);Global::Xamarin.Forms.Forms.Init( This, Bundle);var width = Resources.Displaymetrics.Widthpixels;var Height = Resources.Displaymetrics.Heightpixels;var density = Resources.Displaymetrics.Density; // screen tightness App.ScreenWidth = width/density; // screen width App.ScreenHeight = Height/density; //ScreenScreenHighdegree containing24asinglebitof theMarkQuestionsBarHighdegree PasseveronsizeallocatedreceivedTakeof theHighdegreeNocontainingMarkQuestionsBarHighdegreeloadapplication(New App());}iOS under AppDelegate.cs add: Public Override BOOL finishedlaunching(uiapplication app, nsdictionary Options){Global::Xamarin.Forms.Forms.Init();App.ScreenWidth = UIScreen.Mainscreen.Bounds.Width; // screen width App.ScreenHeight = UIScreen.Mainscreen.Bounds.Height; // screen height loadapplication(New App());return Base.finishedlaunching(app, Options);}

Xamarin.Forms Get the screen height when you start the app

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.