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
- 밑줄
- Activity
- textview
- button
- firebasefunctions
- 안드로이드스튜디오
- RealtimeDB
- ArrayList
- nav_graph
- 뷰바인딩
- firebase
- Kotlin
- BottomSheetDialog
- ButtonWithButton
- Android
- FRAGMENT
- ROOM
- ViewModel
- 안드로이드 스튜디오
- lifecyclescope
- 코틀린
- 랜덤ID
- Imageview
- OutlinedButton
- androidstudio
- MaterialButton
- 안드로이드
- EditText
- Dialog
- 팝업액티비티
Archives
- Today
- Total
안드로이드 앱 개발
액티비티에서 fragment를 refresh하는 방법 본문
1. 그냥 단일 fragment를 refresh하는 방법은
간단하게 fragment를 붙였다가 떼면 된다고 한다.
FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.detach(this).attach(this).commit();
2. 그러나, BottomNavigationView에서는 위 방법이 안 먹혔다.
Refresh를 해줘야 할 때, 해당 Fragment를 지웠다가 다시 초기화한 후 붙여줬다.
getSupportFragmentManager().beginTransaction().remove(fragment_memo).commit();
fragment_memo = new Fragment_Memo();
getSupportFragmentManager().beginTransaction().add(R.id.frame_container, fragment_memo).commit();
'안드로이드앱 > Fragment' 카테고리의 다른 글
fragment의 add()와 replace()의 차이 (0) | 2021.03.15 |
---|---|
fragment의 add()와 replace()의 차이 (0) | 2021.03.15 |
프래그먼트안에 리스트뷰 notifyDatasetchanged를 하려면 (0) | 2021.03.14 |