MainActivity.cs 717 B

12345678910111213141516171819202122
  1. using Android.App;
  2. using Android.Content.PM;
  3. using Android.OS;
  4. namespace TodoSqlite.Droid
  5. {
  6. [Activity(Label = "TodoSqlite", Icon = "@drawable/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
  7. public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
  8. {
  9. protected override void OnCreate(Bundle bundle)
  10. {
  11. TabLayoutResource = Resource.Layout.Tabbar;
  12. ToolbarResource = Resource.Layout.Toolbar;
  13. base.OnCreate(bundle);
  14. global::Xamarin.Forms.Forms.Init(this, bundle);
  15. LoadApplication(new App());
  16. }
  17. }
  18. }