-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLoadScreenActivity.cs
More file actions
34 lines (30 loc) · 915 Bytes
/
Copy pathLoadScreenActivity.cs
File metadata and controls
34 lines (30 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using System.Threading.Tasks;
using Android.Util;
using System.Threading;
namespace TouchWalkthrough
{
[Activity(Label = "@string/app_name", MainLauncher = true, NoHistory = true, Theme = "@style/Theme.Splash")]
public class LoadScreenActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
// Lade neue Drops
DropManager dropmanager = DropManager.Instance;
dropmanager.updateDrops();//bringt an der stelle nur 1x und zwar beim start der app was
dropmanager.sortDrops();
System.Threading.Thread.Sleep(3000); //Let's wait awhile...
this.StartActivity(typeof(MainActivity));
}
}
}