Android activity restart

后端 未结 3 2040
醉梦人生
醉梦人生 2020-12-17 05:17


I am having a confusion in restarting an activity.. I have two function that works well for the same task. Please guide me which is best and why?

publ         


        
3条回答
  •  借酒劲吻你
    2020-12-17 05:58

    This has been posted before:

    Intent intent = getIntent();
    finish();
    startActivity(intent);
    

提交回复
热议问题