Error inflating class com.google.android.material.bottomnavigation.BottomNavigationView

前端 未结 3 1395
野性不改
野性不改 2021-01-18 03:27

I\'m trying to add BottomNavigationView to my layout with this library:

implementation \'com.google.android.material:material:1.0.0\'

3条回答
  •  春和景丽
    2021-01-18 04:26

    Instead of

    app:itemBackground="?colorPrimary"
    

    set

    app:itemBackground="@color/colorPrimary"
    

    Edit: also check that the drawables are in res/drawable folder and not in a folder like res/drawable-v21

提交回复
热议问题