Answers for "android studio exit activity to another activity and restart activity"

2

how to restart activity in android

restart.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                recreate();
            }
        });

    }
Posted by: Guest on November-19-2020
1

How to refresh activity without intent in android

finish();
overridePendingTransition( 0, 0);
startActivity(getIntent());
overridePendingTransition( 0, 0);
Posted by: Guest on February-24-2021

Code answers related to "android studio exit activity to another activity and restart activity"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language