private Fragment findFragmentByPosition(int position) { return getSupportFragmentManager().findFragmentByTag( "android:switcher:" + viewPager.getId() + ":" + pagerAdapter.getItemId(position)); } private void callFragmentMethod(int position){ ((YourFragment)findFragmentByPosition(position)).yourMethod(); }
'Before 2022 > Android' 카테고리의 다른 글
안드로이드 고음질 녹음 (0) | 2019.01.31 |
---|---|
Activity에서 Fragment로 데이터 전송 (0) | 2019.01.28 |
Weak Reference에 대해(메모리 누수) (0) | 2019.01.22 |
퍼미션 체크(권한 허용 요청) 커스텀 리스트뷰로 만들기 (0) | 2019.01.22 |
EditText 제어 (0) | 2019.01.16 |