问题:使用com.ashokvarma.android:bottom-navigation-bar:2.1.0'//底部导航栏库
提示了:android.view.InflateException:Binary XML file line #2:Error inflating class<unknown>
解决方案:在使用bottom-navigation-bar的布局添加。android:theme="@style/AppTheme"
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout .................................... android:theme="@style/AppTheme" tools:context=".activity.MainActivity"> <com.ashokvarma.bottomnavigation.BottomNavigationBar android:id="@+id/bottom_navigation_bar" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="bottom" app:layout_constraintBottom_toBottomOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout>