Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code:

public void setupScreen()
{
    view.runOnUiThread(new Runnable()
    {
        public void run()
        {
            view.setContentView(R.layout.game);
            LinearLayout layout = (LinearLayout)view.findViewById(R.id.game_layout);
            ViewTreeObserver vto = layout.getViewTreeObserver();
            vto.addOnGlobalLayoutListener(this);
        }
    });
}

This method is inside of a class that implements OnGlobalLayoutListener. I want to reference the class so i can put it as the parameter for the addOnGlobalLayoutListener() method. The problem is, is that when you reference this inside of a Runnable that is defined on the fly, this references the Runnable instead of the class I'm trying to reference. What is the work around for this?

share|improve this question

2 Answers

up vote 6 down vote accepted

did you try NameOfYourClass.this?

share|improve this answer
1  
+1 Thanks! i knew it was something simple! – John Mar 19 '12 at 20:40

YourActivityName.this, or perhaps YourClassName.this. Last one is untested, and I don't have Android's SDK here to test.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.