Giter Club home page Giter Club logo

Comments (7)

Maxr1998 avatar Maxr1998 commented on July 16, 2024

Override finish() in your Activity and call startActivity() from there.

Something like:

@Override
public void finish() {
    startActivity(this, YourActivity.class);
    super.finish();
}

from material-intro.

Spiderbezno avatar Spiderbezno commented on July 16, 2024

Thx, I true, I hadn't thought in this option
Override finish() and call startActivity() from there.


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#28 (comment)

from material-intro.

heinrichreimer avatar heinrichreimer commented on July 16, 2024

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 FinishActivity for more information.
Also feel free to ask here if you run into problems.

from material-intro.

daniel-stoneuk avatar daniel-stoneuk commented on July 16, 2024

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 onBackPressed which takes you to the home screen instead of the previous activity (or in this case, the next activity). I know this isn't ideal behaviour as it should back out into the previous app if launched from an intent - maybe you could try starting a new activity with a flag to clear the stack and then immediately calling finish() on that activity.

@Override

public void onBackPressed() {

    Intent homeIntent = new Intent(Intent.ACTION_MAIN);

    homeIntent.addCategory(Intent.CATEGORY_HOME);

    homeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

    startActivity(homeIntent);
}

from material-intro.

heinrichreimer avatar heinrichreimer commented on July 16, 2024

@daniel-stoneuk I'll look at this tomorrow

from material-intro.

heinrichreimer avatar heinrichreimer commented on July 16, 2024

Possibly fixed by #36 if you listen for the Intent result

from material-intro.

trikhatarun avatar trikhatarun commented on July 16, 2024

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.

from material-intro.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.