N niklas1145 Lurker Jan 19, 2009 #1 Hallo Guys, Can anyone post the sourcecode of super.onResume() ? would be great! thx
devolio Android Enthusiast Jan 19, 2009 #2 Code: @Override public void onResume() { super.onResume(); // do what you need } I assume this is what you mean?
Code: @Override public void onResume() { super.onResume(); // do what you need } I assume this is what you mean?
R RabydDonkey Newbie Jan 19, 2009 #3 If you are wondering what the Android platform does on its onResume() - it just sets a boolean to true.
If you are wondering what the Android platform does on its onResume() - it just sets a boolean to true.
N niklas1145 Lurker Jan 20, 2009 #4 I need the Android code onResume() { //this code } not @override.. just a boolean? there has to be a part of code, that updates/refreshes Views.. I need that part
I need the Android code onResume() { //this code } not @override.. just a boolean? there has to be a part of code, that updates/refreshes Views.. I need that part