My application in android can remember its static member value of a class after closing application and running again. I don't save anything to sd card or anywhere else. How can it be? I use to close the application by following code
@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
return super.onKeyDown(keyCode, event);
}
My class and its static values
public class General {
static float colorx = 7, colory = 607;
...
}