I have an activity, inside the onCreate() method there are some instances and some basic operation.. now i want to refresh (call onCreate() again??? ) my activity on particular button click so is this possible??
i have done it by this way..
this.onCreate(null);
but not works well
Help will be greatly appreciated. Thanks in Advance
You can put all these operations in one method, then call this method on the button click and
onCreate..