Hello everyone, I've got a question that is annoying me.
With Android, I've got an application that seems calling "onCreate" every time on a new instance of an activity, because this activity is the son of an another and it finishes itself while it ends its role for one piece of data.
The calling of "onCreate" everytime seems to be re-parsing the xml to create the views and re-attaching/re-creating the listners to the code and so on. So Is there a way to "cache" an activity to be recalled everytime, without seeing it if we click on "back" in the mobile devie? it's like having it really hidden (not accessible with the back button) and destroyed only if it's necessary.
Thanks everyone on advance :)