Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7671437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:03:24+00:00 2026-05-31T16:03:24+00:00

I am starting another activity by calling startActivityForResult() and after pressing back button my

  • 0

I am starting another activity by calling startActivityForResult() and after pressing back button my previous activity’s onCreate Method is called hence recreating the whole activity.

On debugging I found that calling startActivityOnResult() automatically calls

onPause()
onStop()
onDestroy()

methods of current activity. Is it normal behaviour because i had read it calls only onPause() method on starting another activity.

This is my code:

    @Override
public void onResume() {
    super.onResume();
}

@Override
public void onPause() {
    super.onPause();

}

@Override
public void onStop() {
    super.onStop();

}

@Override
public void onDestroy() {
    super.onDestroy();
}


public void showScore(View view) {
    Intent i = new Intent(StartMultipleChoiceActivity.this, ScoreActivity.class);
    i.putExtra("blockPosition", blockPosition);
    int itemVisited=submittedAnswers.size();
    i.putExtra("itemVisited", itemVisited);
    int itemCorrect=correctAnswers.size();
    i.putExtra("itemCorrect", itemCorrect);
    startActivityForResult(i,1);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    // TODO Auto-generated method stub
    super.onActivityResult(requestCode, resultCode, data);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T16:03:26+00:00Added an answer on May 31, 2026 at 4:03 pm

    onPause() and onStop() are perfectly normal. Those will be called any time your activity no longer has foreground input (onPause()) and no longer is visible (onStop()).

    onDestroy() should only be called if you are somehow finishing the activity yourself, or perhaps if you are launching an activity in a separate app and Android needs to terminate your own app’s process to free up RAM.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a main activity with a number of buttons. Each button is starting
How do I clear the stack without starting another activity? I tried testIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(testIntent):
I currently starting the activity indicator before pushing another view controller but it is
I have an activity, which when starting (onCreate or onStart) needs to manipulate some
I saw the other topic and I'm having another problem. The process is starting
Starting from ASP.NET MVC Preview 3, HTML.Button ( and other related HTML controls) are
I know how to lunch another activity, But how do I meke sure an
I have one java process starting another java process with JMX support enabled in
I have some pretty simple Java code in which I'm starting another process and
I am using Button in main Activity. When i clicked this button it will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.