How to prevent to create every time Instance of Store activity?
When I call startActivity(new Intent(this,StoreActivity.class))
, it will create new instance and call OnCreate
Method in StoreActivity
. I want to call one time Oncreate
.
Is this Possible ?