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 6787643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:23:27+00:00 2026-05-26T17:23:27+00:00

suppose that you have 3 Activities (A, B and C) and Activity A starts

  • 0

suppose that you have 3 Activities (A, B and C) and Activity A starts B, and B starts C.

I need that activity C delivery result to Activity A, because activity B is finished when starts activity C.

This code do not works:

public class ActivityA extends Activity {
    @Override
    protected void onActivityResult(int requestCode, int resultCode,
            Intent data) {

        if (requestCode == ActivityC.REQUEST_CODE) {
            // need this code be called when activityC finish
        }
        super.onActivityResult(requestCode, resultCode, data);
    }
}

public class ActivityB extends Activity {

    void startActivityC() {
        Intent intent = new Intent();
        intent.setClass(this, ActivityC.class);
        startActivityForResult(intent, ActivityC.REQUEST_CODE);
        finish();
    }
}

public class ActivityC extends Activity {
    public static final int REQUEST_CODE = 12345;

    void finishActivity() {
        Intent intent = new Intent();
        intent.putExtra("example", "example");
        setResult(RESULT_OK, intent);
        finish();
    }
}

Any idea how to implement this?

Thank you!

  • 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-26T17:23:27+00:00Added an answer on May 26, 2026 at 5:23 pm

    The problem is you’re essentially trying to send a note from point C to point A, and it has to go through point B, but point B decides it doesn’t want to pass notes anymore and goes off to do its own thing. So the note just disappears.

    In Activity B, you already tell it you’re starting the activity for a result, so rather than calling finish after starting Activity C, handle the activity result instead and then finish:

    @Override
    protected void onActivityResult(int requestCode, int resultCode,
            Intent data) {
    
        if (requestCode == ActivityC.REQUEST_CODE) {
            setResult(RESULT_OK, data);
            finish();
        }
        super.onActivityResult(requestCode, resultCode, data);
    }
    

    This will allow Activity B to receive the result it requested from Activity C, then pass it along back to Activity A.

    Hope that helps.

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

Sidebar

Related Questions

suppose that you have two activities A(which is the main activity) and B when
Suppose that I have a 2D array (matrix) in Java like this... int[][] MyMat
Suppose that we have file like this: sometext11 sometext12 sometext13 sometext21 sometext22 sometext23 Texts
Suppose that I have an integer variable in a class, and this variable may
Hi i'm facing this problem. I have an application with 2 activities: -Activity A
Possible Duplicate: Removing an activity from the history stack Suppose I have three activities
I have this question in my text book: Suppose that we have a set
I have noticed, that when android OS closes activities which are not in the
Suppose that you have: <a href=file://...>link1</a> <a href=file://...>link2</a> <a href=http://...>link3</a> <a href=http://...>link4</a> What code
Suppose that I have a database with student information: {'student_name' : 'Alen', 'subjects' :

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.