i want to clear variable value when will i close activity
Thanks All
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.
I think when you close your activity, the android OS will destroy any data associated with your application that isn’t saved in a DB, and if you’re worried about closing, then reopening the same activity, you can always assign default values to your variables upon creating them.. like
int x = 0;
sort of thing, this is always a good practice anyways!
-M@