[Android] Fragment에서 Activity의 resource에 resource까지 접근하기
2021. 5. 25. 14:42ㆍ개발/[Kotlin] 안드로이드 개발
반응형
안녕하세요.
개발하면서 조금 삽질 한 부분을 기록합니다.
상황
SingleActivity 패턴으로 Android 개발을 하면서 MainActivity에 Toolbar를 넣고 Fragment를 붙였다.
그리고 디자인팀이 만든 로고를 툴바에 박았다.
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme"
android:background="#ffffff"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" >
<ImageView
android:id="@+id/toolbar_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/logo_green" />
</com.google.android.material.appbar.MaterialToolbar>
MainFragment에서는 이 Logo를 사용하지만 다른 Fragment에서는 그냥 String 값이 들어가야했다.
그래서 또 다른 Fragment에서는 이 ImageView를 감춰줘야하는데 아무리 접근 해보려고 해도 Crash,,,
뭐가 문제일지 봤더니..
Fragment에서 Activity의 Component에 접근할 때 activity를 불러오고 toolbar를 부르고 그 안의 자식인 ImageView를 불렀어야 했다. 코드로는..
val toolbar by lazy {requireActivity().findViewById<MaterialToolbar>(R.id.toolbar)}
val img by lazy {toolbar.findViewById<ImageView>(R.id.toolbar_logo)}
img.visibility = View.GONE
이렇게 다른 fragment에 들어가면 안보이게하고
MainFragment로 다시 갈 때는
override fun onStop() {
super.onStop()
img.visibility = View.VISIBLE
}
보이게 해줬다.
간단하게 정리하자면 Fragment에서 부모 Activity의 resource의 resource까지 접근하기 위해서는 차근차근 내려가야 한다는 점 !
반응형
'개발 > [Kotlin] 안드로이드 개발' 카테고리의 다른 글
[디자인패턴]MVC, MVP, MVVM 비교 (0) | 2021.11.17 |
---|---|
[DialogFragment, Dialog] 안드로이드 DialogFragment 크기 조정하기, 테두리 둥글게 조절하기 (0) | 2021.10.29 |
[안드로이드 ROOM] MVVM패턴으로 배우는 ROOM DB(ViewModel, Repository, Koin, Coroutine) (0) | 2021.05.11 |
[안드로이드] BroadcastReceiver 간단하게, 제대로 알자! with Kotlin (0) | 2021.03.22 |
[안드로이드] Retrofit2를 사용한 GET/POST 서버통신 with Kotlin (2) | 2021.03.22 |