Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

intent flag clear task

Intent intent = new Intent(SplashScreenActivity.this, RegisterOrLoginActivity.class);
                    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
                    startActivity(intent);
 
PREVIOUS NEXT
Tagged: #intent #flag #clear #task
ADD COMMENT
Topic
Name
5+4 =