• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps hi, i would like to know why my splash screen doesn't work.

LUKE LOUYU

Lurker
May 9, 2020
1
0
my codes are below
import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.os.Handler;
import android.content.Intent;

public class MainActivity extends AppCompatActivity {

@override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
new Handler(). postDelayed(new Runnable() {
@override
public void run() {
Intent homeIntent= new Intent (MainActivity.this, HomeActivity.class);
startActivity(homeIntent);
finish();
}
}, 3000);
}
}
 

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones