My calling activity:
public class Hello extends Activity { public void onCreate(Bundle savedInstanceState) { MyTask mt = new MyTask(this); mt.exe
Define a method in your activity class like this:
public void FinishAfterAsyncTask() { this.finish(); }
And call this method from the OnPostExecute method of the AsynTask class.
OnPostExecute
AsynTask