Notice
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
- layout
- 레이아웃
- UI
- Round Square
- Handelr
- gradle
- Ext
- GlobalComponent
- DP
- Android
- 조이스틱
- GPS
- 유니티
- 안드로이드
- ListvView
- 리스트뷰
- camera
- webcam
- 그래들
- spinner
- Unity
- bottom
- WebCamTexture
- 스피너
Archives
- Today
- Total
JY-Dev Tech Blog
Android(안드로이드) - Fragment 교체 본문
[OverView]
오늘은 Fragment 교체하는 방법에 대해 알려드리겠습니다.
[Code]
일단 Fragmnet를 교체하려면 FragmentTransaction이 필요합니다. 그래서 FragmnetManager에 있는 beginTransaction()을 통해 가져와 보도록 하겠습니다.
val fragmentTransaction = supportFragmentManager.beginTransaction()
이렇게 가져오면 FragmentTransaction안에 있는 함수인 replace를 호출해 바꿔줄 View와 Fragment를 선택해주도록 합시다.
// replace(your view , fragment)
fragmentTransaction.replace(R.id.frameLayout, fragmentList[position]).commitAllowingStateLoss()
그다음에 commitAllowingStateLoss를 통해 commit 해주도록 합시다. 이렇게 하시면 Fragment가 교체가 됩니다.
'안드로이드 > 레이아웃' 카테고리의 다른 글
Android(안드로이드) - BottomNavigationView disable shifting mode (0) | 2020.11.11 |
---|---|
안드로이드(Android) - Navigation 사용법 (0) | 2020.11.09 |
안드로이드(Android) - RelativeLayout set LayoutParams Programmatically (마진값 코드상으로 변경하는법 , LayoutParams 설정법) (0) | 2020.10.12 |
안드로이드(Android) - font 적용시키기 (0) | 2020.10.08 |
안드로이드(Android) - infinite circuler progressbar (0) | 2020.09.24 |
Comments