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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:08:15+00:00 2026-06-11T16:08:15+00:00

Please help me this question. Example I have Activity class MyActivity. I start this

  • 0

Please help me this question.
Example I have Activity class MyActivity. I start this Activity and call this instance is “Home”. In this activity I have three button.
called : Button1, Button2, Button3.
When I click on one button, it will start another instance of MyActivity.
So, Could I do like this :

I click on Button1 start A1 , click on Button2 start A2, and then Button3 start A3. We will have activity stack like this : home ->A1 ->A2->A3.
On Activity A3(an instance of MyActivity). When I click on Button1 could I move A1 to front instead of create new one ?
I wonder could I do that ?

  • 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-11T16:08:16+00:00Added an answer on June 11, 2026 at 4:08 pm

    If A1, A2 and A3 are all instances of MyActivity you cannot do this because there is no way to tell Android which instance of MyActivity you want to bring to the front.

    However, if you create 3 new activities (A1, A2 and A3), each of which derive from MyActivity, then you can do this by setting the flag Intent.FLAG_ACTIVITY_REORDER_TO_FRONT when starting these activities.

    You will need to have all 4 activities (MyActivity, A1, A2, A3) in the manifest.

    You will have something like this:

    public class A1 extends MyActivity {
    }
    
    public class A2 extends MyActivity {
    }
    
    public class A3 extends MyActivity {
    }
    

    and in MyActivity, in ‘onClick()when you start an activity (eitherA1,A2orA3`) you do it like this:

    Intent intent = new Intent(this, A1.class); // or A2 or A3
    intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
    startActivity(intent);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

may be too simple groovy question but....please help i have a list like this:
Please help me solve this problem with capybara I have a button like this
I am again posting the same question. Please help me in this problem. Here
This may be very simple question,But please help me. i wanted to know what
This is my 3rd SO question. Please help again... I want to put up
Please help this beginner here... I have a SQL Server 2008 R2 running on
Please help me about this issue... In my application i have calender where user
I have this code: public class Chronom extends Activity { Chronometer mChronometer; ProgressBar progre;
Maybe this question make you confuse ,but please help me In .NET 4.0 ,
Could some one please help me out on this I have the following json

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.