is it ok in an activity’s procedure to force the onResume event by calling this.OnResume() ? Or should I implement another procedure that’s called by both OnResume and by the first member ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Implement another procedure that’s called in your override of
onResume(). The latter is not intended to be called by you, it’s a convenience method that tidies up or readies the activity when its state changes toresume. A lot likeonCreate()through toonDestroy().