일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Express
- mapreduce
- table
- 공정능력
- Android
- react
- SPC
- Kotlin
- JavaScript
- window
- 보조정렬
- Sqoop
- es6
- xPlatform
- plugin
- Python
- Spring
- GIT
- hadoop
- Eclipse
- mybatis
- NPM
- R
- vaadin
- tomcat
- Java
- MSSQL
- SQL
- SSL
- IntelliJ
- Today
- Total
목록2024/03/21 (2)
DBILITY
https://hyperrookie.tistory.com/741 안드로이드 ViewPager2 + Fragment swape ViewPager2를 사용해 fragement swape를 구현해 봤다. 핵심은 ViewPager2에 FragmentStateAdapter를 구현하는 것이다. PageAdapter.kt package com.example.myviewpager2fragment.adapter import androidx.fragment.app.Fragment import androidx.fragm dbility.com 직전에 했던 코드에 TabLayout을 추가했다. TabItem의 title용 array가 필요하고 ViewPage2 adapter를 연결한 후에 다음과 같이 처리 TabLayoutMe..
ViewPager2를 사용해 fragement swape를 구현해 봤다. 핵심은 ViewPager2에 FragmentStateAdapter를 구현하는 것이다. PageAdapter.kt package com.example.myviewpager2fragment.adapter import androidx.fragment.app.Fragment import androidx.fragment.app.FragmentActivity import androidx.viewpager2.adapter.FragmentStateAdapter class PageAdapter(fragmentActivity: FragmentActivity, fragments: List) : FragmentStateAdapter(fragmentAct..