有没有办法在 android 中将图像作为图块重复多次?
Is there a way to repeat the image multiple times as tiles in android?
我想在 android 中使用单个图像制作类似地板的效果,在 GIMP 中使用 Tile 效果。例如,我的应用程序中已有一个正方形,然后创建一个包含该正方形很多次的图像so that it looks at the end something like this
创建一个 GridLayout 并在每个元素中放置一个图像。
Here's a tutorial 解释了如何使用图像的概念。您当然可以多次引用同一张图片,并根据需要调整边框和间距。
您可以使用带有 GridLayoutManager 的 RecyclerView 作为您的布局。
我想在 android 中使用单个图像制作类似地板的效果,在 GIMP 中使用 Tile 效果。例如,我的应用程序中已有一个正方形,然后创建一个包含该正方形很多次的图像so that it looks at the end something like this
创建一个 GridLayout 并在每个元素中放置一个图像。
Here's a tutorial 解释了如何使用图像的概念。您当然可以多次引用同一张图片,并根据需要调整边框和间距。
您可以使用带有 GridLayoutManager 的 RecyclerView 作为您的布局。