我正在尝试使用材质库创建自定义底部导航。 我正在寻找的是一条在菜单项之间移动的动画线。当我选择另一个菜单项时,它将移向所选菜单项。
我试图通过更改图标来实现这一点,但是没有用。
这是我的xml代码:
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transgreen"
app:itemIconTint="@color/itemtextselector"
app:itemTextColor="@color/itemtextselector"
app:itemBackground="@color/transgreen"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layoutDirection="rtl"
android:textDirection="rtl"
app:labelVisibilityMode="unlabeled"
android:theme="@style/Widget.BottomNavigationView"
app:menu="@menu/bottnav" />
我不知道如何以及在何处创建此行(图像视图),以及如何平稳地将其移向所选菜单项。