Sorry I am noob here and learning about the basics about android..
May I know what is the differences between the bundles? I search
around and there is not much comments on the bundles as far as I can
find...
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
From what I know is savedInstanceState is the save state when the
activity goes to onPause/onStop.. What about icicle?
Thanks a lot!


