Back

android - 重新启动activity

发布时间: 2017-08-30 07:46:00

务必使用下列代码:

startActivity(getIntent());
finish();

上面的getIntent()非常重要,可以保留之前传递过来的参数

Back