| 1234567891011121314151617181920212223 |
-
- using Android.App;
- using Android.Content.PM;
- using Android.OS;
- using Android.Provider;
- namespace XamarinFormsGoogleDriveAPI.Droid
- {
- [Activity(Label = "XamarinFormsGoogleDriveAPI", Icon = "@drawable/icon", Theme = "@style/MainTheme", MainLauncher = true,ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
- public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
- {
- protected override void OnCreate(Bundle bundle)
- {
- TabLayoutResource = Resource.Layout.Tabbar;
- ToolbarResource = Resource.Layout.Toolbar;
- base.OnCreate(bundle);
- global::Xamarin.Forms.Forms.Init(this, bundle);
- LoadApplication(new App());
- }
- }
- }
|