CrabtreeOn,印度客户定制APP,迁移2.0平台版本
wxr
2023-01-03 ed8b62c72831d92067369cc9abb35f1470b8e4d3
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
using Android.App;
using Android.Content;
using Android.Content.PM;
using Android.OS;
using Shared;
 
namespace HDL_ON_Android
{
    public class SplashActivity : Activity
    {
 
        protected override void OnCreate (Bundle savedInstanceState)
        {
            base.OnCreate (savedInstanceState);
 
            ////打开baseActivity
            Intent i = new Intent (this, typeof (BaseActivity));//Intent intent=new Intent( 起始组件对象 , 目标 Service.class);
            StartActivity (i);
            Finish ();//关闭自己
 
        }
 
   
    }
}