我越来越多地在应用程序中注意到这种菜单。谁有想法如何实施?
问问题
101 次
1 回答
1
您可以将此 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"
/>
于 2018-05-05T16:03:12.440 回答