mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-10 18:55:03 +00:00
Can now display splashscreen when first entering the app v.4
This commit is contained in:
@@ -33,10 +33,15 @@ public class MainActivity extends AppCompatActivity implements CreateListDialogF
|
||||
|
||||
public static AuthManager am = new AuthManager();
|
||||
|
||||
boolean showSplash = true;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
if(showSplash) {
|
||||
showSplash = false;
|
||||
|
||||
new Handler().postDelayed(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
@@ -45,6 +50,7 @@ public class MainActivity extends AppCompatActivity implements CreateListDialogF
|
||||
finish();
|
||||
}
|
||||
}, 1);
|
||||
}
|
||||
|
||||
|
||||
//------------------------------Auth Testing---------------------------------------------//
|
||||
|
||||
Reference in New Issue
Block a user