Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- application
- navigation component
- notification
- shotcut
- Git
- ActivityResultContracts
- LOG
- skipcollapsed
- onReceivedSslError
- 이미지 gps
- ExifInterface
- webview
- Plugins
- ChromeCustomTab
- room
- prettyJson
- circlecrop
- notification setting
- datastore
- itemAnimator
- notification bar
- Blinking
- kdoc-generator
- jsontokotlinclass
- Android
- App Startup
- 403 Error
- requestPermission
- onResume
- BottomSheetDialog
Archives
- Today
- Total
목록viewpager2 (1)
Debbi Story
ViewPager2의 notifyDataSetChanged() 안될 때
ViewPager2는 RecyclerView.Adapter 와 FragmentStateAdpater를 사용할 수 있습니다. 그중에 FragmentStateAdpater를 사용했을때 notifyDataSetChanged()를 해도 갱신이 안될 때 getItemId 와 containsItem 를 override 해주시면 됩니다! 아래는 예시 입니다. class ViewPager2Adapter(fm: FragmentManager, private val fmList: ArrayList) : FragmentStateAdapter(fm) { private val fmIds = fmList.map { it.hashCode().toLong() } override fun getItemCount(): Int { retur..
안드로이드/Tip
2020. 8. 18. 23:22