Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

MainActivity.cs 653 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. namespace WorkingWithWebview.Android
  2. {
  3. using global::Android.App;
  4. using global::Android.Content.PM;
  5. using global::Android.OS;
  6. [Activity(Label = "WorkingWithWebview.Android.Android", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
  7. public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsApplicationActivity
  8. {
  9. protected override void OnCreate(Bundle bundle)
  10. {
  11. base.OnCreate(bundle);
  12. global::Xamarin.Forms.Forms.Init(this, bundle);
  13. this.LoadApplication(new App());
  14. }
  15. }
  16. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...