如何设计网格布局,如android中的截图所示?

时间:2016-03-10 06:35:22

标签: android gallery

我可以从我的设备查询所有图像并使用recyclerview在linearlayout中显示它们但实际上我想要显示图像缩略图,如在android gallery app中显示的图像大小不同但它们以某种方式调整到适合并涵盖所有空间

gallery

请检查图片链接,因为声誉不佳我无法在我的问题中发布

1 个答案:

答案 0 :(得分:1)

要创建一个符合您要求的网格,您可以从链接获取概念,github上有很多自定义网格,但这是最常见的find it here

这是如何在xml

中定义的示例
  <com.etsy.android.grid.StaggeredGridView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/grid_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:item_margin="8dp"
    app:column_count="@integer/column_count" />