我如何在 android studio 中使用 BottomNavigationViewEx 更改或添加图标后面的形状

how i can change or add shape behind the icon with BottomNavigationViewEx in android studio

我使用 BottomNavigationViewEx ,我想在我的底部导航中做这样的事情,我想更改或添加图标后面的形状并仅更改中心项目的位置。

我尝试定位这个函数 bottomNavigationViewEx.setItemHeight(130) 但所有项目一起移动。

对于中心图标后面的红色电路,我没有找到解决方案。

从底部导航视图隐藏中心项目。并将 Fab 按钮放在底部导航上 view.This 是底部导航布局的代码。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"

android:background="@android:color/transparent"
android:layout_height="wrap_content">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="20dp"
        android:layout_marginTop="60dp"
        android:background="@color/white"/>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="@color/lightGray"
        android:layout_marginTop="19dp"></View>

<com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx
    android:id="@+id/navigation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    app:itemIconTint="@color/bottom_nav_color"
    android:background="@color/white"
    app:menu="@menu/main_menu" />




<android.support.design.widget.FloatingActionButton
    android:id="@+id/bootomFab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="20dp"
    android:visibility="visible"
    app:fabSize="normal"
    android:src="@drawable/ic_add"
    app:borderWidth="0dp"
    app:elevation="9dp" />
</RelativeLayout>

这是 menu.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/action_favorites"
    android:enabled="true"
    android:icon="@drawable/ic_list"
    android:title=""
    app:showAsAction="ifRoom" />
<item
    android:id="@+id/action_share"
    android:enabled="true"
    android:icon="@drawable/ic_share"
    android:title="fds"
    app:showAsAction="ifRoom" />
<item
    android:id="@+id/action_nothing"
    android:enabled="false"
    android:icon="@null"
    android:title="fxn"
    app:showAsAction="ifRoom" />
<item
    android:id="@+id/action_sync"
    android:enabled="true"
    android:icon="@drawable/ic_sync"
    android:title=""
    app:showAsAction="ifRoom" />
<item
    android:id="@+id/action_profile"
    android:enabled="true"
    android:icon="@drawable/ic_profile"
    android:title=""
    app:showAsAction="ifRoom" />
</menu>