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

The Archive Base Latest Questions

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

I have 3 activity: Activity1, Activity2, Activity3. Activity1 and Activity3 can start Activity2: startActivity

  • 0

I have 3 activity: Activity1, Activity2, Activity3. Activity1 and Activity3 can start Activity2:

startActivity (new Intent(this,Activity2));

How in Activity2 I can check which class start Activity2 ? Is there any way to take information from Intent ? Thanks…

I dont whant to put anything in Intent. I think I dont need that. When I start intent I already saying from what context I do that (new Intent(*this*,Activity2)). And this “this” I want to recognize in Activity2 !!! Is that possible ?

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

    You can pass that information in the “extra” Bundle of your Intent:

    In Activity1:

    Intent intent = new Intent(this, Activity2.class);
    intent.putExtra("caller", "activity1");
    startActivity(intent);
    

    In Activity2:

    String caller = getIntent().getStringExtra("caller");
    

    There’s also get/put extra methods for other data types like boolean, int, etc.


    As for why you cannot access the Context you supplied when creating the Intent on the other side:

    The only thing that Android does with the supplied Context (i.e. your this) is to create a ComponentName from it. That class only keeps the package of the supplied Context and discards anything else.

    So you theoretically could put your activities into different packages and then go getIntent().getComponentName().getPackageName() on it at the receiving end — but please don’t. Intent extras is the way to go.

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

Sidebar

Related Questions

So I have this code in my main activity to start a new one:
I have the following problem: I have an Activity where a user can start
How can I start a new application on Android? I have done a new
In my manifest file, I have an activity declaration which looks something like this:
Possible Duplicate: Android ListView, start new activity Hey can someone tell me how I
I have an activity which has an array list ArrayList<String> array = new ArrayList<String>();
I have a launching Activity A1 which has a start button which starts a
I have a list of objects called Activity: class Activity { public Date activityDate;
I have an activity which shows some List entries. When I click on a
I have an activity with two buttons, start and stop. If the user press

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.