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 trialAsmita Kunwar
2,410 PointsHow to inject butterknife in place of - holder.iconImageView = (ImageView) convertView.findViewById(R.id.iconImageView);
I was wondering if there was a way to inject with butterknife on these statements?
holder.iconImageView = (ImageView) convertView.findViewById(R.id.iconImageView); holder.temperatureLabel = (TextView) convertView.findViewById(R.id.temperatureLabel); holder.dayLabel = (TextView) convertView.findViewById(R.id.dayNameLabel);
1 Answer
Jon Kussmann
Courses Plus Student 7,254 PointsHi Asmita,
I'm not sure what version of ButterKnife that you're using... but you can do something like (if you're using the most recent version):
ButterKnife.bind(this, convertView);
Asmita Kunwar
2,410 PointsAsmita Kunwar
2,410 PointsYes I am. Thanks!