I'm really happy if I can show the snackbar before the destination page did load. My current snackbar code here:
final Snackbar snackbar = Snackbar.make(parent_view_chapter, "Redirecting to another page....please wait", Snackbar.LENGTH_SHORT);
snackbar.show();
My expected outcome - right after snackbar dismissed, then the page navigate to my another page.
How I can achieve this? Where should I place the snackbar code? @Override method...is it here should I place the snackbar code?
@Override
public boolean onSupportNavigateUp() {
onBackPressed();
return true;
}
@Override
public void onBackPressed() {
super.onBackPressed();
}
Thanks!