ANDROID/2
[Library] ButterKnife - view binding을 보다 쉽게
안댕
2019. 11. 4. 22:51
1. dependency 추가 및 Sync
build.gradle
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
2. Android Studio 에서 Plugin 설치
- [File] - [Setting]
- < Setting 검색창 : Plugins >
- < Plugin 검색창 : butterknife >
- < ButterKnife Zelezny : Install >
3. Generate사용
- [activity에서 layout변수 우클릭]
- [Generate 클릭]
- [Generate Butterknife Injections]
이 라이브러리를 쓰면 뷰 바인딩이든, 이벤트든 간단한 처리가 가능해집니다^-^