Delete splash_screen.java

This commit is contained in:
Raman deep
2020-10-28 05:42:22 +00:00
parent 8792ac30ae
commit e672fa9234

View File

@@ -1,27 +0,0 @@
package com.ShanMukhaInnovations.ArrestTB;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class splash_screen extends AppCompatActivity {
private static int SPLASH_TIME_OUT=3000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent home = new Intent(splash_screen.this, Login_Screen.class);
startActivity(home);
finish();
}
}, SPLASH_TIME_OUT);
}
}