티스토리 뷰
액티비티에서 특정 작업을 수행한 후에 프래그먼트를 생성하기를 원할 때가 있다
하지만 레이아웃에서 프래그먼트의 id를 지정하기 때문에 바로 프래그먼트를 만든다
이렇게 되면 프래그먼트에 null 값이 전달되어 오류로 인한 강제종료 문제가 발생할 수 있다
이 문제는 간단하게 해결이 가능하다
액티비티에서 Fragment를 바로 만들도록 레이아웃에서 Fragment를 넣을 것이 아니라 FrameLayout을 넣으면 해결된다
<fragment
android:id="@+id/fragment"
android:name="com.example.application.MyFragment"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
app:layout_constraintBottom_toTopOf="@+id/adView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout" />
android:name="com.example.application.MyFragment"를 통해 프래그먼트의 onCreateView() 함수를 호출하기 때문에 생기는 문제이다
<FrameLayout
android:id="@+id/fragment"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
app:layout_constraintBottom_toTopOf="@+id/adView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout" />
FrameLayout으로 수정하면 프래그먼트의 onCreateView()를 호출하지 않기 때문에 문제가 생기지 않는다
추가로 FrameLayout에 맞게 android:name 속성을 지워주면 된다
'Android' 카테고리의 다른 글
[Android] 안드로이드 뒤로가기 액티비티 제거 (0) | 2019.05.06 |
---|---|
[Android] xml이 아닌 자바 코드로 레이아웃 구성 (0) | 2019.05.06 |
[Android] 파이어베이스 Timestamp (0) | 2019.05.05 |
[Android] Activity에서 Fragment에 값 전달 (0) | 2019.05.05 |
[Android] 해싱함수 (0) | 2019.05.05 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- activity
- 뒤로가기
- 레이아웃
- android
- wrap_content
- Android Studio
- 파이어스토어
- 파이어베이스
- 프래그먼트
- 안드로이드 스튜디오
- java
- firestore
- 안드로이드 레이아웃
- eggtimer
- recyclrView
- 액티비티
- Firebase
- layout
- round border
- 스튜디오
- Alfred
- intent
- RecyclerView Swipe
- 안드로이드 여백
- calendarView
- RecyclerView 여백
- 에그타이머
- RecyclerView padding
- androidx
- 안드로이드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함