-
-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I start a new activity when I click the finish button or reach the last slide #28
Comments
Override finish() in your Activity and call startActivity() from there. Something like: @Override
public void finish() {
startActivity(this, YourActivity.class);
super.finish();
} |
Thx, I true, I hadn't thought in this option You are receiving this because you authored the thread. |
Hey @Spiderbenzo, look at the example. There's sample code on how to open a new activity while having the fancy fade effect on the last page. Take a look at |
Unfortunately, pressing back during the IntroActivity will take you to the activity which you want to display after the intro. I've added some code to
|
@daniel-stoneuk I'll look at this tomorrow |
Possibly fixed by #36 if you listen for the |
Although using finish() works but it breaks the flow and for a moment the app is closed and then the next activity opens. The flow is not continuous and the intro activity resumes the activity it was called from. |
How Can I Star new activity when I click finish button or last slide
The text was updated successfully, but these errors were encountered: