Hello, I am new in android development, and I need advice about structure.I want to develop Tic tac toe game, and have 3 images: 1 - 3×3 grid 2 - circle 3- cross.
My idea: I need some layout with background image(3×3 grid) and table 3 x 3 with ImageViews, after clicking on some position we load image(circle or cross) in our table.
Questions:
-First of all is my idea correct?
-I tried to set background with view.setBackgroundResource(res)
but it looks not very good, grid(black colour) loading with background colour black ant is difficult to see something.
ps: I found Tic tac toe game example in android sdk, ..\samples\android-8, maybe it helps to somebody