티스토리 뷰
Fragment LifeCycle
replace, addToBackStack
getFragmentManager()
.beginTransaction()
.replace(R.id.container, new fragment1) // 새로운 fragment1을 생성하며 전환
.addToBackStack(null) //추가하면, Back버튼을 눌렀을때 이전Fragment로 복귀
.commit();
(new fragment1 대신 이전에 미리 Fragment생성후 Bundle을 담아, 데이터를 함께 전송할수도있음)
remove, popBackStack
getFragmentManager()
.beginTransaction()
.remove(currentFragment.this) // 현재Fragment를 종료
.commit();
getFragmentManager()
.popBackStack(); // 이전Fragment로 복귀
- Activity에선 getFragmentManager() 대신 getSupportFragmentManager가 필요하기도함.
- add()와 replace()의 차이점에 대한 이슈도 있다.
https://code.i-harness.com/ko-kr/q/11c55df
Fragment Refresh : detach&attach
getFragmentManager()
.beginTransaction()
.detach( --fragment-- )
.attach( --fragment-- )
.commit();
in my Code)
getSupportFragmentManager().beginTransaction().replace(R.id.post_container, fragment, "fragmentTag").commit();
AppCompatActivity activity = (AppCompatActivity) view.getContext();
Fragment fragment2 = activity.getSupportFragmentManager().findFragmentByTag("fragmentTag");
activity.getSupportFragmentManager().beginTransaction().detach(fragment2).attach(fragment2).commit();
- fragment 생성시 "unique tag"를 추가필드로 줘서 fragment tag 생성.
- fragment2를 findFragmentByTag로 찾아서, fragment2가 아닌 다른곳에서도 fragment2를 refresh 가능.
- 위의 refresh코드 위치는 fragment를 포함한 activity의 Adapter안이라서, 'activity'를 별도로 생성한후 찾아서 fragment와 연결시켰음.
'Android' 카테고리의 다른 글
비동기처리를 위한 Callback(콜백) 관련 Issue (0) | 2019.09.13 |
---|---|
Activity, Fragment간의 데이터 전달 (0) | 2019.09.13 |
Google Login with Firebase, Fragment Tab with ViewPager 구현시 참고자료 (0) | 2019.09.13 |
keystore by keytool.exe (0) | 2019.09.13 |
AsynchTask, Thread를 통한 네트워크 연결 (0) | 2019.09.11 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Stack
- Data Structure
- webhacking.kr
- Vo
- graph
- 해외여행
- 개발자
- FRAGMENT
- Android Studio
- mysql
- Android
- git
- queue
- JPA
- 리버싱
- socket
- OneToMany
- dfs
- javascript
- 우아한 테크코스
- bfs
- Algorithm
- brute-force
- C
- 회고
- Java
- 웹해킹
- 프로그래머스
- sort
- reversing
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함