23 строки
715 B
C#
23 строки
715 B
C#
using Android.App;
|
|
using Android.Content.PM;
|
|
using Android.OS;
|
|
|
|
namespace TodoLiteDB.Droid
|
|
{
|
|
[Activity(Label = "TodoLiteDB", Icon = "@mipmap/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());
|
|
}
|
|
}
|
|
}
|
|
|