0

I want to make a floor like effect using a single image in android, somethig lake the Tile effect in GIMP. For example have a square already on my app and then create an image that has that square a lot of thimesso that it looks at the end something like this

  • A tiled background: https://stackoverflow.com/questions/2706913/how-to-make-android-apps-background-image-repeat – from56 Jun 30 '17 at 21:52

2 Answers2

0

Create a GridLayout and put an image in each element.

Here's a tutorial that explains the concept of how to use images. You can of course refer to the same image multiple times, and adjust the borders and spacing to meet your needs.

Software2
  • 2,358
  • 1
  • 18
  • 28
0

You can use the RecyclerView with GridLayoutManager as your layout.

Matthew Francis
  • 670
  • 3
  • 10
  • 26