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.
在我的应用程序结束时,我有一个重新启动应用程序的按钮..
在按钮的onClick监听器中重启应用程序的方法是什么?
我尝试通过使用“com.android.action.main”创建意图来做到这一点
但它不起作用?
将以下代码放入您的onClick
onClick
Intent i = getBaseContext().getPackageManager() .getLaunchIntentForPackage( getBaseContext().getPackageName() ); i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(i);