我关注this tutorial将BottomNavigationView
添加到我的Android Studio项目中。
我将项目迁移到AndroidX,并注意到他在视频中使用的BottomNavigationView
可能与AndroidX不兼容,因此我决定改用implementation 'com.google.android.material:material:1.1.0'
。
问题
添加了BottomNavigationView
并设置了所有相关属性后,尽管遵循所有说明并检查了所有内容正确无误,但我仍然看到它仍然为空。
请注意BottomNavigationView如何完全为空并且高度为0
这是我的 Activity 的XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/frameLayout"/>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:menu="@menu/bottom_navigation"/>
</RelativeLayout>
这是我菜单项的XML
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/homeButton"
android:icon="@android:drawable/ic_menu_agenda"
android:title="a funny item"/>
<item
android:id="@+id/favoritesButton"
android:icon="@android:drawable/ic_menu_info_details"
android:title="favorites"/>
<item
android:id="@+id/ideaButton"
android:icon="@android:drawable/ic_menu_agenda"
android:title="ideas"/>
</menu>
怎么了我想念什么?
最佳答案
implementation 'com.google.android.material:material:1.2.0-alpha03'
style.xml
<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
activity.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/frameLayout"
app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottomNavigationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/bottom_navigation" />
</androidx.constraintlayout.widget.ConstraintLayout>
菜单xml文件
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/homeButton"
android:icon="@android:drawable/ic_menu_agenda"
android:title="a funny item"/>
<item
android:id="@+id/favoritesButton"
android:icon="@android:drawable/ic_menu_info_details"
android:title="favorites"/>
<item
android:id="@+id/ideaButton"
android:icon="@android:drawable/ic_menu_agenda"
android:title="ideas"/>
</menu>
关于android - BottomNavigationView为空,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60599633/