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 trialSpencer Bell
1,322 PointsI 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
Lauren Moineau
9,483 PointsHi 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
1,322 PointsSpencer Bell
1,322 PointsEvery thing is the same except "teamtreehouse.stormy.CurrentWeather" is red
Lauren Moineau
9,483 PointsLauren Moineau
9,483 PointsSo your package name (you can find it at the very top of
MainActivity.java
or in the project tree in the left menu) iscom.teamtreehouse.stormy
? Notteamtreehouse.com
?Spencer Bell
1,322 PointsSpencer Bell
1,322 PointsMy package name is teamtreehouse.com
Spencer Bell
1,322 PointsSpencer Bell
1,322 PointsI changed type to "teamtreehouse.com.CurrentWeather", and I have no error about binding now.
Spencer Bell
1,322 PointsSpencer Bell
1,322 PointsThanks for help!
Lauren Moineau
9,483 PointsLauren Moineau
9,483 PointsYou'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 becom.example.myapp
.