Kotlin2 ViewPager2 1.dependancy 추가 implementation 'androidx.viewpager2:viewpager2:1.0.0' 2.ViewPager2 xml 추가 android:orientation 가로 세로 스크롤 방향 지정 (default, 가로 방향) -vertical, 세로 방향 3.Adapter 생성 RecyclerView.Adapter 이미지 데이터 출력과 같이 정적 정보만 표시할 경우 사용 FragmentStateApdater Fragment와 같이 각 페이지의 생명주기를 고려해야할 경우 사용 class MainPager(fm: FragmentActivity) : FragmentStateAdapter(fm){ private val fragments: ArrayList = ArrayList() .. 2021. 7. 24. 'Hilt' 의존성 주입 Gradle 추가 루트 경로 dependencies { classpath 'com.google.dagger:hilt-android-gradle-plugin:2.28-alpha' } 앱 경로 apply plugin: 'kotlin-kapt' apply plugin: 'dagger.hilt.android.plugin' dependencies { //hilt used implementation "com.google.dagger:hilt-android:$hilt_version" kapt "com.google.dagger:hilt-android-compiler:$hilt_version" //hilt test androidTestImplementation "com.google.dagger:hilt-android-t.. 2020. 7. 14. 이전 1 다음