我不能使用labelVisibilityMode

时间:2019-03-22 13:06:37

标签: android dependencies bottomnavigationview

即使我已经添加了依赖项设计,我也不明白 为什么放弃这种情况?

my error

my error..

my dependency

my Source

i try to do this but something show another error

2 个答案:

答案 0 :(得分:0)

<com.google.android.material.bottomnavigation.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:labelVisibilityMode="unlabeled"/>

请将此上面的代码用于labelVisibilityMode 还要在应用程序级别gradle中添加此依赖项

implementation 'com.google.android.material:material:1.0.0-alpha3'

答案 1 :(得分:0)

尝试使用新的material.io 2.0和androidx。 尝试使用此代码。

<?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:fitsSystemWindows="true"
android:layout_height="match_parent">

<include
    android:id="@+id/amToolbar"
    layout="@layout/app_toolbar"
    />

<FrameLayout
    android:id="@+id/activity_main_container"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    app:layout_constraintTop_toBottomOf="@+id/amToolbar"
    app:layout_constraintBottom_toTopOf="@id/bottom_navigation"
     />

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottom_navigation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:labelVisibilityMode="labeled"
    app:layout_constraintBottom_toBottomOf="parent"
    app:menu="@menu/bottom_menu" />

 </androidx.constraintlayout.widget.ConstraintLayout>

引用此链接 https://material.io/design/components/bottom-navigation.html