본문 바로가기
android

ViewPager를 가진 Dialog 구현 주의사항

by Gil 2020. 1. 2.
728x90

Dialog 안에 ViewPager를 넣는다. 그리고 ViewPager에 FragmentPagerAdapter를 적용시킬때 다음의 에러가 발생한다. 

 vp_space.adapter = PagerAdapter(supportFragmentManager)  // 에러
 
 vp_space.adapter = PagerAdapter(childFragmentManager) // 정상 동작

NestedFragment 들은 FragmentManager를 전달할 때 child의 것으로 전달해야 한다. 

이걸 몰라서 반나절을.. 흑

https://developer.android.com/about/versions/android-4.2.html#NestedFragments

 

Android 4.2 APIs  |  Android Developers

API Level: 17 Android 4.2 (JELLY_BEAN_MR1) is an update to the Jelly Bean release that offers new features for users and app developers. This document provides an introduction to the most notable and useful new APIs for developers. As an app developer…

developer.android.com

 

'android' 카테고리의 다른 글

RxJava 의 핵심 기술 - concat, merge, zip  (0) 2020.02.27
RxJava 란  (0) 2020.02.04
How to draw Rect Overlay View?  (0) 2020.01.05
Architecture 설계  (0) 2019.12.30
Android UI Thread와 Custom Thread에서의 UI 처리  (0) 2019.08.05