My problem goes more into the direction of "how do it do it?"
So far i know that i can make it like this:
public static void main (String [] args) {
int [][] galaxy;
galaxy = new int [8][10];
this would build a galaxy of 8x10 fields, while i'm now searching for the best way to get it on screen with a black background and then making some of those fields (they are state 0 amt, right?) into solar systems, by giving them a JPG that i can klick on to open the solar system (a normal list windown will do it at first) and then select the planet to build on it.
i understand that a planet is a array in the array, but so far i'm not sure how to creat them an get them on screen, so i can give them attributes
it also seems that JLabel is not working for androind and thats why i'm stucked