美文网首页
GridView-demo

GridView-demo

作者: 100个大西瓜 | 来源:发表于2020-06-10 16:21 被阅读0次

    <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="@dimen/image_thumbnail_size"

        android:horizontalSpacing="@dimen/image_thumbnail_spacing"

        android:numColumns="auto_fit"

        android:stretchMode="columnWidth"

        android:verticalSpacing="@dimen/image_thumbnail_spacing">

    </GridView>

    让GridView 每一行的个数自适应,需要设置每一列的宽度为固定大小,

    即  android:columnWidth="@dimen/image_thumbnail_size",

    然后 设置 android:numColumns="auto_fit" ,即可自适应。

    其中 android:stretchMode="columnWidth"的作用是:缩放与列宽大小同步

    参考自链接

    相关文章

      网友评论

          本文标题:GridView-demo

          本文链接:https://www.haomeiwen.com/subject/ivsptktx.html