Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道您如何完全单击首选项来重新启动应用程序。你能给我一些代码片段吗?我希望单击带有书面重新启动的首选项,它会完全重新启动应用程序
尝试这个..
Intent i = new Intent(this, Home.class); i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(i); finish();