Delete Splash_Screen.java
This commit is contained in:
@@ -1,28 +0,0 @@
|
|||||||
package in.sminnovations.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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user