Android

BottomNavigationView 이벤트 연결 없이 만들기 (Google Sample)

그란. 2020. 4. 28. 22:43

안드로이드 스튜디오에서 BottomNavigationView 프로젝트를 만들면 기본적으로 생성되는 코드

 

이벤트 연결없이 쉽게 구현가능, 

문제는 기존 프로젝트 연결시 100% 오류 경험하게 됨

 

코드 먼저 확인

 

새롭게 생긴 네비게이션 정의 

res -> navigation -> mobile_navigation.xml

<navigation xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/mobile_navigation"
    app:startDestination="@+id/navigation_home">

    <fragment
        android:id="@+id/navigation_home"
        android:name="com.example.myapplication.ui.home.HomeFragment"
        android:label="@string/title_home"
        tools:layout="@layout/fragment_home" />

    <fragment
        android:id="@+id/navigation_dashboard"
        android:name="com.example.myapplication.ui.dashboard.DashboardFragment"
        android:label="@string/title_dashboard"
        tools:layout="@layout/fragment_dashboard" />

    <fragment
        android:id="@+id/navigation_notifications"
        android:name="com.example.myapplication.ui.notifications.NotificationsFragment"
        android:label="@string/title_notifications"
        tools:layout="@layout/fragment_notifications" />
</navigation>

 

res -> menu -> menu_main_nav.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/navigation_home"
        android:icon="@drawable/ic_nav_home"
        android:title="@string/nav_home" />

    <item
        android:id="@+id/navigation_cart"
        android:icon="@drawable/ic_nav_cart"
        android:title="@string/nav_cart" />

    <item
        android:id="@+id/navigation_mypage"
        android:icon="@drawable/ic_nav_mypage"
        android:title="@string/nav_mypage" />
</menu>

 

 

res -> layout-> activity_main.xml

<androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <fragment
            android:id="@+id/nav_host_fragment"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            app:layout_constraintBottom_toTopOf="@id/bottomView"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            android:name="androidx.navigation.fragment.NavHostFragment"
            app:defaultNavHost="true"
            app:navGraph="@navigation/mobile_navigation"
            />

        <com.google.android.material.bottomnavigation.BottomNavigationView
            android:id="@+id/bottomView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/white"
            app:itemTextColor="@color/tab_selector"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:menu="@menu/menu_main_nav"
            />
    </androidx.constraintlayout.widget.ConstraintLayout>

 

MainActivity

	val navController = findNavController(R.id.nav_host_fragment)
        val appBarConfiguration = AppBarConfiguration(
            setOf(
                R.id.navigation_home, R.id.navigation_cart, R.id.navigation_mypage
            )
        )
        setupActionBarWithNavController(navController, appBarConfiguration)
        bottomView.setupWithNavController(navController)

 

코드 끝

 

장점

Databinding, BindingAdapter로 고생 안해도 됨

 

 

 

삽질 1>

mobile_navigation.xml  fragment id와 menu_main_nav.xml 의 item id 가 같아야 한다 (1:1 매칭) 

같지 않은 경우에는 탭 이벤트가 동작 안함

 

 

 

삽질 2>

activity_main.xml 에서 기존의 frame 대신 fragment로 교체한다 

그러면 FragmentContainerView 로 변경하라는 알람이 뜬다 (androidx.fragment.app.FragmentContainerView)

하지만 바꾸면 안된다 에러발생;;

 

 

 

삽질 3>

AndroidManifest에 해당 액티비티 테마를 NoActionbar 처리하면 안됨;;;

액티비티 테마는 Light.DartActionbar로 하고 Activity에서 액션바 숨겨야한다

 

 

보통 BaseActivity의 onCreate 안에서 ViewModel 과 같이 처리하는게 나을것 같다

	 viewDataBinding = DataBindingUtil.setContentView<VDB>(this, layoutResId).apply {
                lifecycleOwner = this@BaseActivity
                setVariable(viewModelId, viewModel)
                supportActionBar?.hide()
            }

 

 

구글이 내부적으로 코드를 만들어서 navigation 연결하여 사용할 수 있게 하는 것 같은데

 

코드가  뭔가 문제가 많다..;; (액션바 문제, id 맵핑 문제 등)

 

 

 

*추가  : 해당 컴포넌트를 연결하면 프래그먼트가 재생성 되지 않는다

github.com/android/architecture-components-samples/blob/master/NavigationAdvancedSample/app/src/main/java/com/example/android/navigationadvancedsample/NavigationExtensions.kt

'Android' 카테고리의 다른 글

Data Binding 사용시 tools가 동작하지 않는 이슈  (0) 2020.07.04
Toolbar Shadow, Cubic Effect  (0) 2020.07.04
CleanArchitecture 링크 모음  (0) 2020.04.28
Wifi, LTE 검사  (0) 2020.04.26
Android gitignore  (0) 2020.04.17