I have a class data, where I store my user data.
public class deck {
public static ArrayList deck = new ArrayList();
public static ArrayList cardchosen = new ArrayList();
public static ArrayList deck1Image = new ArrayList();
public static ArrayList deck2Image = new ArrayList();
}
How can I save the state of those Arrays in onSaveInstanceState? Do I have to use something different?