0
Good afternoon, I’m starting to learn ansdroid, and I’m in the grip senguinte, I can’t do the screen change for minutes, where I’m missing and someone can give me an optimization?
public void passartelacategoria(View view) {
final int MILISEGUNDOS = 3000;
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent chamando = new Intent(MainActivity.this, categoriaActivity.class);
MainActivity.this.startActivity(chamando);
MainActivity.this.finish();
}
}, MILISEGUNDOS);
}