首页 > 解决方案 > 网格视图底部菜单

问题描述

我越来越多地在应用程序中注意到这种菜单。谁有想法如何实施?

在此处输入图像描述

标签: androidgridviewandroid-bottom-nav-view

解决方案


您可以将此 xml 用于网格视图,

<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/gridview"
 android:layout_width="match_parent"

android:layout_height="match_parent"
    android:columnWidth="90dp"
    android:numColumns="auto_fit"
    android:verticalSpacing="10dp"
    android:horizontalSpacing="10dp"
    android:stretchMode="columnWidth"
    android:gravity="center"
/>

推荐阅读