Skip to content

Instantly share code, notes, and snippets.

@balsikandar
Created September 15, 2019 20:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save balsikandar/9ed93b04623f886b69b65bf7e2028ae5 to your computer and use it in GitHub Desktop.
Save balsikandar/9ed93b04623f886b69b65bf7e2028ae5 to your computer and use it in GitHub Desktop.
public class MrIndiaActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
finish();
}
}, 500);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment