File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/main/java/it/feio/android/omninotes/models/adapters/category Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -165,8 +165,8 @@ dependencies {
165165 transitive = true
166166 exclude group : " com.android.support"
167167 }
168- implementation ' com.jakewharton:butterknife:10.2.0 '
169- annotationProcessor ' com.jakewharton:butterknife-compiler:10.2.0 '
168+ implementation ' com.jakewharton:butterknife:10.2.1 '
169+ annotationProcessor ' com.jakewharton:butterknife-compiler:10.2.1 '
170170 implementation(' org.mnode.ical4j:ical4j:3.0.11' ) {
171171 exclude group : ' commons.io'
172172 }
Original file line number Diff line number Diff line change 2020import android .view .View ;
2121import android .widget .ImageView ;
2222import androidx .recyclerview .widget .RecyclerView .ViewHolder ;
23+ import butterknife .BindView ;
2324import butterknife .ButterKnife ;
2425import com .neopixl .pixlui .components .textview .TextView ;
26+ import it .feio .android .omninotes .R ;
2527
2628public class CategoryViewHolder extends ViewHolder {
2729
@@ -30,7 +32,10 @@ public CategoryViewHolder (View view) {
3032 ButterKnife .bind (this , view );
3133 }
3234
35+ @ BindView (R .id .icon )
3336 public ImageView imgIcon ;
37+ @ BindView (R .id .title )
3438 public TextView txtTitle ;
39+ @ BindView (R .id .count )
3540 public android .widget .TextView count ;
3641}
You can’t perform that action at this time.
0 commit comments