I have never had to build an array in android like the following, and I think there are errors in my syntax.
I am trying to accomplish somethign like:
String RoomName[] = {"145"="PentHouse","125"="BoardRoom","45"="ShopRoom","8"="MainOffice"};
so If I reference something like:
String CurrentRoom = RoomName["8"];
I want CurrentRoom to be equal to MainOffice.
I know I am missing something obvious.