When should super.onResume(); be called, on the first line of onResume() or on the last line?
super.onResume();
onResume()
protected void onResume() { Log.i
there is an example on the following link:
Android -- How to properly handle onPause/onResume methods?