mirror of
https://github.com/bitwarden/mobile
synced 2026-01-01 16:13:15 +00:00
Splash screen, styling updates, focus with delay for android.
This commit is contained in:
32
src/Android/SplashActivity.cs
Normal file
32
src/Android/SplashActivity.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using Android.App;
|
||||
using Android.OS;
|
||||
using Android.Content;
|
||||
using Android.Support.V7.App;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bit.Android
|
||||
{
|
||||
[Activity(Theme = "@style/BitwardenTheme.Splash",
|
||||
MainLauncher = true,
|
||||
NoHistory = true,
|
||||
WindowSoftInputMode = global::Android.Views.SoftInput.StateHidden)]
|
||||
public class SplashActivity : AppCompatActivity
|
||||
{
|
||||
public override void OnCreate(Bundle savedInstanceState, PersistableBundle persistentState)
|
||||
{
|
||||
base.OnCreate(savedInstanceState, persistentState);
|
||||
}
|
||||
|
||||
protected override void OnResume()
|
||||
{
|
||||
base.OnResume();
|
||||
var startupWork = new Task(() =>
|
||||
{
|
||||
StartActivity(new Intent(Application.Context, typeof(MainActivity)));
|
||||
});
|
||||
|
||||
startupWork.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user