[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까지 접근하기 위해서는 차근차근 내려가야 한다는 점 !

 

반응형