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 | 31 |
Tags
- navigation component
- ActivityResultContracts
- 403 Error
- notification bar
- itemAnimator
- kdoc-generator
- onResume
- Blinking
- notification setting
- notification
- 이미지 gps
- application
- ExifInterface
- shotcut
- Plugins
- Git
- requestPermission
- Android
- datastore
- jsontokotlinclass
- room
- LOG
- circlecrop
- BottomSheetDialog
- ChromeCustomTab
- skipcollapsed
- App Startup
- webview
- onReceivedSslError
- prettyJson
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