底部导航栏android中超过3项

前端之家收集整理的这篇文章主要介绍了底部导航栏android中超过3项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 android的新手,我正在尝试在底部导航栏中创建一个包含3个以上元素的应用程序.我能够显示它们,但它们最终聚集在一起,只有三个可以正常显示.这是我的代码
  1. <android.support.design.widget.BottomNavigationView
  2. android:id="@+id/bottomNavigation"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:elevation="15dp"
  6. android:layout_gravity="bottom"
  7. android:layout_alignParentBottom="true"
  8. app:menu="@menu/bottom_nav_items" />

这是视图的图像:
This is the snapshot

我被困了请帮忙..

解决方法@H_404_11@
我不确定,但据我所知,使用底栏不可能伴随超过3个项目,而不会扭曲对齐方式.
无论如何你可以做一个水平方向的线性布局,然后将这些图标设置为图像视图,然后将它们的权重设为1.

这是代码,

  1. <LinearLayout
  2. android:layout_width="match_parent"
  3. android:layout_height="50dp"
  4. android:gravity="center"
  5. android:layout_alignParentBottom="true"
  6. android:background="#fff">
  7.  
  8. <ImageView
  9. android:layout_width="25dp"
  10. android:layout_height="25dp"
  11. android:src="(YOUR IMAGE SOURCE)"
  12. android:layout_centerVertical="true"
  13. android:layout_centerHorizontal="true"
  14. android:layout_weight="1"/>

然后像这样的其他图像视图.

猜你在找的Android相关文章