Reputation: 3936
I am trying to build a jigsaw puzzle game in android. Could someone explain what would be the best method of doing this?
I was thinking of using a grid of image views and swapping the images when the user slides it.
Using open gl?
Which is better?
Upvotes: 3
Views: 1064
Reputation: 2199
I agree. You should definitely go for the first option. OpenGL is overkill for your application. But if you are making this app "for fun" you could use OpenGL to get experience and getting familiar with OpenGL until next time you might need it. :)
Upvotes: 1
Reputation: 35059
I'd go for the first option, since it is:
Upvotes: 2