Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ironpython
- pyautogui
- 사무자동화
- Text To Speech
- google cloud
- Google API
- YOLOv7
- pythonnet
- 사무자동화 #Selenium
- 파이썬 #업무자동화 #python
- YOLOv5
- computervision
- objectdetection
- pdf merge
- processstart
- DeepLearning
- yolo
- pypdf2
- 업무자동화
- Text-to-Speech
Archives
- Today
- Total
Doarchive
안드로이드 View Binding 사용하기 본문
안드로이드 View Binding
안드로이드 View Binding 라이브러리를 사용하면 뷰에 자동으로 바인딩할 수 있어서 findViewById() 메소드를 사용하는 것보다 쉬움 기존 findViewById 로 작성된 코드를 수정하면서 View Binding 설정을 다시 해봄
Gradle 설정
View Binding 사용 설정하기 build.gradle(:app)에 아래 코드 추가
buildFeatures{
viewBinding = true
}
바인딩 클래스 생성
액티비티나 프래그먼트와 같은 레이아웃에 대한 바인딩 클래스를 생성한다
Activity 에서 생성하고 사용하기
private lateinit var binding: ActivityMainBinding
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root)
}
Fragment 에서 생성하고 사용하기
Fragment 에서는 onDestroy에서 binding 을 해제 해줘야 함
private var _binding: FragmentExampleBinding? = null
private val binding get() = _binding!!
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
_binding = FragmentExampleBinding.inflate(inflater, container, false)
return binding.root
}
override fun onDestroy() {
super.onDestroy()
_binding = null
}
바인딩 사용하기
자동으로 컴포턴트가 불러와진다.
binding.exampleTV.text = "Hello, World!"
728x90
'Mobile > Android' 카테고리의 다른 글
안드로이드 스튜디오 에 삼성 갤럭시 디바이스 에뮬레이터 추가하기 (0) | 2023.08.07 |
---|---|
[Android] 스크린 사이즈 구하기 'getDefaultDisplay()' was deprecated (0) | 2023.07.10 |
[Android] Could not find method kapt() for arguments [androidx.room:room-compiler:2.5.0] (0) | 2023.06.16 |
[Android] The 'kotlin-android-extensions' Gradle plugin is no longer supported. 에러 해결 / Kotlin Parcelize 사용하기 (0) | 2023.03.23 |
안드로이드 스튜디오 arr 파일 만들기 (0) | 2020.04.02 |