I make tile memory game. I want when activity start to init tiles with pictures. I try do this:
private void initTiles() {
// Store name of resources in array
String[] pictures = new String[] {"tile_circle", "tile_deny", "tile_heart"
, "tile_mail", "tile_music", "tile_pin", "tile_splash", "tile_yes"};
Random rand = new Random();
int i = 1;
while(i <= 16) {
String pic = pictures[rand.nextInt(8)];
LinkedList<String> list = new LinkedList<String>();
list = (LinkedList<String>) tilesMapping.values();
//Check if this picture is already loaded twice
if(list.indexOf(pic) == -1) {
tilesMapping.put(Integer.valueOf(i), pic);
i++;
} else if(list.lastIndexOf(pic) == -1) {
tilesMapping.put(Integer.valueOf(i), pic);
i++;
} else if(list.indexOf(pic) == list.lastIndexOf(pic)) {
tilesMapping.put(Integer.valueOf(i), pic);
i++;
}
}
}
But when I start game I receive force close. But when comment this row list = (LinkedList<String>) tilesMapping.values(); The game starts.