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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:31:01+00:00 2026-05-23T07:31:01+00:00

I have a tab activity, and inside one tab I have activitygroup. Initially activity

  • 0

I have a tab activity, and inside one tab I have activitygroup. Initially activity A is shown and from there I want to call activity B using startactivityforresult. How to achieve this?

in my activity A, I am doing this…

        Intent i = new Intent(Entry.this, Child.class);

        // Create the view using FirstGroup's LocalActivityManager  
        View view = GroupActivity.group.getLocalActivityManager()  
        .startActivity("child", i  
        .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP))  
        .getDecorView();  

        // Again, replace the view  
        GroupActivity.group.replaceView(view);

This though takes me to activity B, there is no way for me to return to activity A from there.

  • 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-23T07:31:02+00:00Added an answer on May 23, 2026 at 7:31 am

    Change startActivity to:

    .startActivityForResult(i, .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));

    then add this method to ActivityA:

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
            // See which child activity is calling us back.
            switch (resultCode) {
               case RESULT_OK:
               {
                   //processing code goes here
               }
               default:
                    break;
            }
    } 
    

    and then when finish() is called on Activity B you should hit the ‘OnActivityResult’ method. You can also send an intent back to main activity by calling:

    setResult(Activity.Result_OK, intent);
    

    on Activity B.

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

Sidebar

Related Questions

My application is Tab using ActivityGroup.I have done title of each activity using getParent().getParent().setTitle(New
I have a TabHost with a ListView inside a tab. When the activity starts,
I have one list activity which populates when I click on one tab, the
I have ImageViews and TextViews in my layout (activity is inside a Tab), and
I have a Tab Control with multiple Tab Pages. I want to be able
I have a tab contol with two tabs. Each one containing listviews. When the
I have TabActivityGroup: MainActivity class contain some tab, that name loading from db. Sales,
I currently have a tab layout with 2 tabs, one tab with a list
I have a TabActivity and inside 5 tabs with 5 activities each one. I
I need some help :) I have a tab activity with four sub activities.

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.