18 lines
441 B
C#
18 lines
441 B
C#
using Android.App;
|
|
using Android.Content;
|
|
using Application = Android.App.Application;
|
|
|
|
namespace HelloWorld.Android
|
|
{
|
|
[Activity(Theme = "@style/MyTheme.Splash", MainLauncher = true, NoHistory = true)]
|
|
public class SplashActivity : Activity
|
|
{
|
|
protected override void OnResume()
|
|
{
|
|
base.OnResume();
|
|
|
|
StartActivity(new Intent(Application.Context, typeof(MainActivity)));
|
|
}
|
|
}
|
|
}
|