Getting activity from context in android

383,834

Solution 1

From your Activity, just pass in this as the Context for your layout:

ProfileView pv = new ProfileView(this, null, temp, tempPd);

Afterwards you will have a Context in the layout, but you will know it is actually your Activity and you can cast it so that you have what you need:

Activity activity = (Activity) context;

Solution 2

This is something that I have used successfully to convert Context to Activity when operating within the UI in fragments or custom views. It will unpack ContextWrapper recursively or return null if it fails.

public Activity getActivity(Context context)
{
    if (context == null)
    {
        return null;
    }
    else if (context instanceof ContextWrapper)
    {
        if (context instanceof Activity)
        {
            return (Activity) context;
        }
        else
        {
            return getActivity(((ContextWrapper) context).getBaseContext());
        }
    }

    return null;
}

Solution 3

  1. No
  2. You can't

There are two different contexts in Android. One for your application (Let's call it the BIG one) and one for each view (let's call it the activity context).

A linearLayout is a view, so you have to call the activity context. To call it from an activity, simply call "this". So easy isn't it?

When you use

this.getApplicationContext();

You call the BIG context, the one that describes your application and cannot manage your view.

A big problem with Android is that a context cannot call your activity. That's a big deal to avoid this when someone begins with the Android development. You have to find a better way to code your class (or replace "Context context" by "Activity activity" and cast it to "Context" when needed).

Regards.


Just to update my answer. The easiest way to get your Activity context is to define a static instance in your Activity. For example

public class DummyActivity extends Activity
{
    public static DummyActivity instance = null;

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

        // Do some operations here
    }

    @Override
    public void onResume()
    {
        super.onResume();
        instance = this;
    }

    @Override
    public void onPause()
    {
        super.onPause();
        instance = null;
    }
}

And then, in your Task, Dialog, View, you could use that kind of code to get your Activity context:

if (DummyActivity.instance != null)
{
    // Do your operations with DummyActivity.instance
}

Solution 4

If you like to call an activity method from within a custom layout class(non-Activity Class).You should create a delegate using interface.

It is untested and i coded it right . but i am conveying a way to achieve what you want.

First of all create and Interface

interface TaskCompleteListener<T> {
   public void onProfileClicked(T result);
}



public class ProfileView extends LinearLayout
{
    private TaskCompleteListener<String> callback;
    TextView profileTitleTextView;
    ImageView profileScreenImageButton;
    boolean isEmpty;
    ProfileData data;
    String name;

    public ProfileView(Context context, AttributeSet attrs, String name, final ProfileData profileData)
    {
        super(context, attrs);
        ......
        ......
    }
    public setCallBack( TaskCompleteListener<String> cb) 
    {
      this.callback = cb;
    }
    //Heres where things get complicated
    public void onClick(View v)
    {
        callback.onProfileClicked("Pass your result or any type");
    }
}

And implement this to any Activity.

and call it like

ProfileView pv = new ProfileView(actvitiyContext, null, temp, tempPd);
pv.setCallBack(new TaskCompleteListener
               {
                   public void onProfileClicked(String resultStringFromProfileView){}
               });

Solution 5

And in Kotlin:

tailrec fun Context.activity(): Activity? = when {
  this is Activity -> this
  else -> (this as? ContextWrapper)?.baseContext?.activity()
}
Share:
383,834

Related videos on Youtube

OVERTONE
Author by

OVERTONE

3000 people view, 500 people favourite, 5 closed it all down.

Updated on July 18, 2022

Comments

  • OVERTONE
    OVERTONE almost 2 years

    This one has me stumped.

    I need to call an activity method from within a custom layout class. The problem with this is that I don't know how to access the activity from within the layout.

    ProfileView

    public class ProfileView extends LinearLayout
    {
        TextView profileTitleTextView;
        ImageView profileScreenImageButton;
        boolean isEmpty;
        ProfileData data;
        String name;
    
        public ProfileView(Context context, AttributeSet attrs, String name, final ProfileData profileData)
        {
            super(context, attrs);
            ......
            ......
        }
    
        //Heres where things get complicated
        public void onClick(View v)
        {
            //Need to get the parent activity and call its method.
            ProfileActivity x = (ProfileActivity) context;
            x.activityMethod();
        }
    }
    

    ProfileActivity

    public class ProfileActivityActivity extends Activity
    {
        //In here I am creating multiple ProfileViews and adding them to the activity dynamically.
    
        public void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.profile_activity_main);
        }
    
        public void addProfilesToThisView()
        {
            ProfileData tempPd = new tempPd(.....)
            Context actvitiyContext = this.getApplicationContext();
            //Profile view needs context, null, name and a profileData
            ProfileView pv = new ProfileView(actvitiyContext, null, temp, tempPd);
            profileLayout.addView(pv);
        }
    }
    

    As you can see above, I am instantiating the profileView programatically and passing in the activityContext with it. 2 questions:

    1. Am i passing the correct context into the Profileview?
    2. How do I get the containing activity from the context?
  • an00b
    an00b almost 12 years
    +1 for explaining a very common area of confusion between the 2 different types of contexts (just like there are 2 different Rs). The Google folks need to enrich their vocabulary.
  • an00b
    an00b almost 12 years
    BTW, @BorisStrandjev is is correct: 2. Yes you can. (can't argue with working code)
  • Sky Kelsey
    Sky Kelsey almost 12 years
    You can't be guaranteed that the context you are working with is an Activity Context or an Application Context. Try passing an Application Context to a DialogView, watch it crash, and you will see the difference.
  • Sky Kelsey
    Sky Kelsey almost 12 years
    Boris, the question asks if there is a way to get an Activity from a Context. This is not possible. Of course you can cast, but that is a last resort. If you want to treat the Context as an Activity, then don't downcast to an Activity. It makes for simpler code, and is less prone to bugs later when another person is maintaining your code.
  • dwbrito
    dwbrito over 11 years
    Note that 'getApplicationContext()' instead of 'this' will not work.
  • Boris Strandjev
    Boris Strandjev over 11 years
    @alaxid Nope, it needs to be Activity context in this case.
  • dwbrito
    dwbrito over 11 years
    @BorisStrandjev I haven't quite understand your comment. Anyway, I said that after trying your example but instead of 'this' I used getApplicationContext() and the application tried to cast the App itself, hence giving a cast error, instead of the activity. After switching to 'this', as you answered, it worked.
  • rupps
    rupps about 11 years
    Of course it is dangerous to cast just because. But sometimes you are completely sure that the context is indeed an Activity, and things are much simpler... But I agree... use with care !
  • StackOverflowed
    StackOverflowed almost 11 years
    2. Not really. If the context was the Application context, then your app would crash.
  • Admin
    Admin over 9 years
    This is dangerous because, as mentioned in a separate comment, the context may not always be an Activity.
  • Sipty
    Sipty over 9 years
    It's worth mentioning type casting is NOT always safe, so this check should be used, before you cast the context into an activity: if(context instanceof MyActivity)
  • Boris Strandjev
    Boris Strandjev over 9 years
    @Sipty instanceof Activity would be sufficient.
  • Amit Yadav
    Amit Yadav over 9 years
    typecast only if(context instanceof Activity){ //typecast}
  • Sam
    Sam about 9 years
    static instance?! @Nepster has the best solution to this imo
  • Boris Strandjev
    Boris Strandjev about 9 years
    @Sam: Hey, any particular reason for that, or you just felt like it?
  • Sam
    Sam about 9 years
    for the reasons listed by others. a high profile answer like this is definitely going to encourage bad habits. Nepster has a good solution to this problem
  • Boris Strandjev
    Boris Strandjev about 9 years
    @Sam I think this is the A car with square wheels dilemma: meta.stackoverflow.com/questions/254341/… . I just asnwer OP's questions. On the other hand, I agree that better solutions do exist. However, I remind you that downvote's hover reads "This answer was not useful"
  • Sam
    Sam about 9 years
    The highest upvoted answers on your link both suggest challenging the question if it is smelly. This question certainly is smelly. The OP first stated: "I need to call an activity method from within a custom layout class." which is completely achievable with appropriate use of interfaces. Then he says "The problem with this is that I don't know how to access the activity from within the layout." which is a significant hint toward a misunderstanding. People try to to do the wrong thing all the time in programming and we shouldn't turn a blind eye to it.
  • Sam
    Sam about 9 years
    This answer was not useful to me. It wasn't even useless, it was actively harmful as we now have code committed with this pattern by another developer that likely won't be undone any time soon due to time constraints. So... down with this answer :P
  • BladeCoder
    BladeCoder about 9 years
    Creating a static reference to an Activity is the best way to create memory leaks.
  • UmAnusorn
    UmAnusorn almost 9 years
    java.lang.ClassCastException: android.app.ReceiverRestrictedContext cannot be cast to android.app.Activity
  • Primoz990
    Primoz990 over 8 years
    This is bad, and not answering the question. I can't believe this got so many upvotes...
  • Boris Strandjev
    Boris Strandjev over 8 years
    @Primoz990 as for the downvote, i do not mind it, but you listed two claims that are both utterly incorrect. If you claim something is bad, mention also the good otherwise you act just as any modern media would do - of no social benefit, piling up negative feelings. As for answering the question - i believe accept and the amount of upvotes prove you wrong, but feel free to post your interpretation of the OP's query, so we can try to improve the answer
  • Primoz990
    Primoz990 over 8 years
    @Boris Strandjev When i read my comment again, i see it is really like modern media... i know what you mean. But many other people in comments and other questions have already explained why this cast is a bad idea... this works only if you pass a Activity as context... for simple use cases this works, this is why the up votes, but later you can have trouble with such code. The other answers and comments prove this.
  • Miha_x64
    Miha_x64 over 7 years
    Static Activity reference is incorrect, activities are not singletons.
  • Snicolas
    Snicolas almost 7 years
    This is the right answer. The other ones don't take into account the ContentWrapper hierarchy.
  • cylov
    cylov over 6 years
    There are different kind of contexts. Activities and Applications can have contexts. This will only work when the context is of a an activity.
  • lygstate
    lygstate about 6 years
    This is the true answer:)
  • Theo
    Theo about 6 years
    @lygstate: What target API level are you using in your app? What is the error? This only works within the UI (activities, fragments, etc), not in Services.
  • Niklas Rosencrantz
    Niklas Rosencrantz about 6 years
    This method seems useless for a CustomView which is instantiated in XML. There is no way to use the contructor
  • Darwind
    Darwind about 6 years
    This is the correct answer and should be marked as the correct answer. I know the answer marked as the correct one actually answers OP's question, but it shouldn't be answering the question like that. The fact is that it's not good practice to pass in the Activity like that inside a view. The child should never know about their parent in any case, except through the Context. As Nepster states, the best practice is to pass in a callback, so whenever something happens of interest to the parent, the callback will be fired with the relevant data.
  • Jay Dangar
    Jay Dangar almost 6 years
    Can we say that activity is subclass of context, because it can be cast into activity? I didnot understand how this can be possible can you elaborate your answer?
  • Boris Strandjev
    Boris Strandjev almost 6 years
    @JayDangar It is a subclass, you can check it yourself: developer.android.com/reference/android/app/Activity java.lang. Object ↳ android.content.Context ↳ android.content.ContextWrapper ↳ android.view.ContextThemeWrapper ↳ android.app.Activity
  • Jay Dangar
    Jay Dangar almost 6 years
    Thanks for the reference buddy.
  • Taslim Oseni
    Taslim Oseni over 5 years
    Check that the context you passed in isn't null.. That's most likely the problem.
  • Jackie Degl'Innocenti
    Jackie Degl'Innocenti almost 5 years
    Basically keeping a temporary reference to the current activity bound to onResume and onPause lifecycle hooks could be a great solution.