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

  • Home
  • SEARCH
  • 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 7857351
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T21:01:12+00:00 2026-06-02T21:01:12+00:00

I have two activities, let’s call them A and B. A is an activity

  • 0

I have two activities, let’s call them A and B.

A is an activity that can be started from two places in the app. I want to be able to know if A was started from place 1 or 2, so in B I call A like this:

Intent i = new Intent(B.this, A.class);
i.putExtra("code", code);
startActivityForResult(i, code);

(code is an int with the value 1.)

In the onCreate method of A I do this:

@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    Intent i = getIntent();
    Bundle extras = i.getExtras();
    if(extras != null)
    {
        int code = extras.getInt("code");
        if(code == 1)
        {
            ClearReleasesCache(); // just a private method of A
            setResult(1, i);                
            finish();
            return;
        }
    }

    // do everything else as usual
    setContentView...
}

Now, the problem is this (I’ve noticed it in debugging):

When I launch A from B, I want A to finish, as the code indicates here. When I launch A from another activity that’s not B, I want it to run as usual (and it does). But finish() and return do nothing here – I can see when debugging that after the return call, it jumps back into onCreate, it doesn’t shut down the activity.

That is, onActivityResult() in B is never called.

What’s wrong here?

  • 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-06-02T21:01:14+00:00Added an answer on June 2, 2026 at 9:01 pm
     if(extras == null || extras.getInt("code") != 1) {
             // do everything else as usual
     } else
           finish();
    

    cant you just switch the if condition?

    EDIT: but are you sure the return statement does not worK?

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

Sidebar

Related Questions

I have an application which has two Activities, let's call them A and B.
I have two activities. In first I come to the second activity from first
I have an app that so far consists of two Activities: The Main Menu
I have two activities A and B, and from activity A, I click on
I have two activities in my app. One is a list that is presented
I have two activities, Activity A and Activity B. I pass objects from Activity
I have two activities A, B . Now from A i call B by
I have two activities, A and B. Activity A implements a LocationListener that periodically
I have a fairly basic app that only has two Activities, the splash screen
If I have two activities in my app, one with listview and the other

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.