如何在底部导航上显示晶圆厂?这就是我所尝试的:
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="@+id/trendingPosts"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/trendingPosts"
android:focusedByDefault="true"
android:focusable="true"/>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="@+id/trendingPosts"
app:layout_constraintTop_toBottomOf="@+id/trendingPosts"
app:menu="@menu/main_menu"
android:focusable="false"
android:focusedByDefault="false"/>
但是,晶圆厂就在它下面。查看图片:
2条答案
按热度按时间vecaoik11#
您需要使用协调器布局
tp5buhyn2#
一个很好的方法是在BottomNavigationView和FloatingActionButton中使用elevation参数,并将fab按钮的elevation比BottomNavigationView多,如下所示: