作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
因此支持V25
。我们有一个名为底部导航的新组件。
按照设计指南,底部导航的高度
应该是8dp
( https://material.io/guidelines/components/bottom-navigation.html#bottom-navigation-specs )
但我无法为其设置海拔
。
任何建议,示例将不胜感激。谢谢!
更新 XML 代码
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:elevation="8dp"
app:elevation="8dp"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@drawable/bottom_nav_color_state"
app:itemTextColor="@drawable/bottom_nav_color_state"
app:menu="@menu/bottom_navigation_main"/>
<FrameLayout
android:id="@+id/contentFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/bottom_navigation"
android:background="#EDEDED"/>
最佳答案
所以,现在 (25.1.0) 我们必须将 BNV 的 android:background
设置为 @android:color/white
才能有阴影。如果您设置为其他颜色(即您的原色),则不会显示
关于android - 如何将高度设置为底部导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41823599/
我是一名优秀的程序员,十分优秀!