Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting the context inside a custom view?

Tags:

I have made a small custom view component:

public class ActionBar extends RelativeLayout
{

    public ActionBar(Context context, AttributeSet attrs)
    {
        super(context, attrs);

        // .. custom logic here
    }

    private class homeButtonListener implements OnClickListener
    {

        @Override
        public void onClick(View v)
        {
            // how do i get the context here?
        }

    }

}

Every ActionBar component comes with a home-button, so I thought it would be appropriate to put it's onClickListener inside the view definition itself. The button should return the user to the main activity when clicked, but I need a Context in order to start activities. Can I create a local reference to the context passed in the constructor, without running into a mess of memory leaks?

like image 779
soren.qvist Avatar asked Sep 17 '11 16:09

soren.qvist


1 Answers

The view has a method to get the context. See the android API for getContext().

like image 166
Noel Avatar answered Oct 26 '22 07:10

Noel