Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialChris Reeder
3,205 PointsSo I created a Thread class and then tried to send a toast to my main activity using runonUiThread but I'm getting a sta
So I created a Thread class and then tried to send a toast to my main activity using runonUiThread but I'm getting a static error. I was going to set and and run multiple threads to do different things and then update the loading bar as they complete before finally starting a new activity.
Do I need a handler for the main UI thread? I wanted to store the method to update the loading bar in the main activity too, is that a problem?
(The error indicates 'this' in the Toast line is the problem)
1 Answer
Seth Kroger
56,413 PointsFor a Toast, it requires a Context, and that is usually the Activity of the app. Thread doesn't inherit from Activity however, so 'this' in a Thread isn't the correct type to pass it. You should store a reference to the Activity inside the Thread and use that. (If the thread is an inner class of the activity you would also use MyActivtyClass.this
to say you want the outer class' this)