gardian06
gardian06

Reputation: 1546

android board game

I want to create a board game (9x9 grid) for the android. I was wondering if there where any suggestions as to books, blogs, tutorial, or even open source programs to look into.

I was planning on writing the majority of it in native java/c++. probably with a target of API level7 platform 2.1 update 1 (as this is an actual device I have access to)

I am mostly interested in displaying the board, tiles, and pieces (I already have a some assets that can be re-sized if needed) to the screen, and if I can find something that will help me understand how to register movement of the pieces that would be amazing to.

Upvotes: 0

Views: 1206

Answers (1)

Kyle Ivey
Kyle Ivey

Reputation: 6041

The book Hello, Android guides you through the development of a game which has a 9x9 grid, Sudoku. The author's implementation of the grid is simple and easy to follow. The book is a decent read for beginners.

Upvotes: 2

Related Questions