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 trial

Android Build a Weather App Hooking Up the Model to the View Plugging in the Data

Spencer Bell
Spencer Bell
1,322 Points

I have error on binding.setWeather(displayWeather); , the error is on displayWeather specifically.

setWeather(com.teamtreehouse.stormy.CurrentWeather)' in '' cannot be applied to '(teamtreehouse.com.CurrentWeather)

1 Answer

Hi Spencer. Is the variable type in your activity_main.xml file correct? It should be:

<data>
     <variable
         name = "weather"
         type = "com.teamtreehouse.stormy.CurrentWeather"/>
</data>

If your package name is com.teamtreehouse.stormy, that is. If it's different, adjust the type accordingly.

Spencer Bell
Spencer Bell
1,322 Points

Every thing is the same except "teamtreehouse.stormy.CurrentWeather" is red

So your package name (you can find it at the very top of MainActivity.java or in the project tree in the left menu) is com.teamtreehouse.stormy? Not teamtreehouse.com?

Spencer Bell
Spencer Bell
1,322 Points

My package name is teamtreehouse.com

Spencer Bell
Spencer Bell
1,322 Points

I changed type to "teamtreehouse.com.CurrentWeather", and I have no error about binding now.

You're welcome! I'm happy to hear everything is working fine now :). However, for your future apps, remember that, by convention, a package name is like a reverse internet domain name. So if your domain name is myapp.example.com, your package name should be com.example.myapp.