BottomNavigationView Does not exists

与世无争的帅哥 提交于 2019-12-01 22:45:37

Because you have migrated to AndroidX...try using com.google.android.material.bottomnavigation.BottomNavigationView instead

<com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="0dp"
        android:layout_marginEnd="0dp"
        android:background="?android:attr/windowBackground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/navigation" />

ON MAC CMD+SHIFT+R

Then replace all occurance of

android.support.design.widget.BottomNavigationView

With

com.google.android.material.bottomnavigation.BottomNavigationView

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!