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 (2015) Hooking Up the Model to the View Using Butter Knife for Views

Maksims Visnakovs
Maksims Visnakovs
2,616 Points

Library Butter Knife doesn't work

Hi there,

I have an issue with Butter Knife. I copied Butter Knife library from GitHub and pasted it into build gradle and synced. After that I tried to write a line starting with @InjectView and Android Studio doesn't recognise that. I am really not sure what is the issue as I pasted the library code into dependencies. I am really stuck, reading documentations on android developer source, but no success. Has anyone come across similar issue and is able to advise? Would greatly appreciate.

Kind Regards,

Maks

4 Answers

Kevin Faust
Kevin Faust
15,353 Points

@InjectView is deprecated. The ButterKnife version used in Ben's videos are of a older version.

Use @Bind isntead of @InjectView. Tell me if it works!

Maksims Visnakovs
Maksims Visnakovs
2,616 Points

Hi Kevin,

Thank you for your answer. It does work. Just tried it. I wish he have mentioned that on the lesson. I was stuck with this issue for two days.

Thank you once again.

Kevin Faust
Kevin Faust
15,353 Points

Glad we got it working, Maksims!!

Kevin Faust
Kevin Faust
15,353 Points

What's happening now?

Maksims Visnakovs
Maksims Visnakovs
2,616 Points

Hi Kevin. I think there was a glitch. Now it is working

From what I'm seeing it looks like you also have to replace the ButterKnight.inject() method with ButterKnife.bind()