I have main activity that have grid of images and details activity which display one image. When you click on image of main activity the app launch the detail activity with the selected image. I want to return from details activity to the main activity without calling on create of the main activity because it consumes a lot of time. How can I do that ?
I use
Intent in = new Intent(Search_costumer.this,Customer_details.class);
startActivity(in);
to navigate from the main activity to the details activity