Я использую нижнюю панель приложения с веб-сайта дизайна материалов для своего проекта Android Studio. Тем не менее, значки в моей нижней панели приложения не могут расположиться правильно и одинаково. это выглядит так (как показано на рисунке), пожалуйста, сообщите.
Я использую bottomAppBar.replacemenu для загрузки значков на панель приложения
private void initialiseComponents(){
myBottomAppBar.replaceMenu(R.menu.mainmenu);
}
my mailmenu.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/main_book"
android:icon="@drawable/home_48"
android:enabled="true"
android:title="@string/home"
app:showAsAction="always"/>
<item
android:id="@+id/main_board"
android:icon="@drawable/board_48"
android:enabled="true"
app:showAsAction="always"
android:title="@string/board"
/>
<item
android:id="@+id/main_feeds"
android:icon="@drawable/feed_48"
android:enabled="true"
app:showAsAction="always"
android:title="@string/feeds" />
<item
android:id="@+id/main_settings"
android:icon="@drawable/settings_48"
android:enabled="true"
app:showAsAction="always"
android:title="@string/settings" />
</menu>
нижняя панель приложения:
<android.support.design.bottomappbar.BottomAppBar
android:id="@+id/bottomBar"
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:backgroundTint="@color/colorPrimary"
app:elevation="5dp"
app:menu="@menu/mainmenu"
app:fabAlignmentMode="center"
android:elevation="5dp"
>
</android.support.design.bottomappbar.BottomAppBar>