After thinking about ways to minimize my app size I wondered..
public int;
public boolean;
does one take up more memory than the other?
if instead they are:
public int = 0;
public boolean = false;
any difference there?
What about using an integer instead of a boolean( 1 & 2 ). Does that somehow take up less memory / space?