以编程方式重新启动Android Studio

时间:2017-08-13 12:37:48

标签: android-studio android-studio-2.2

我必须使缓存无效并以编程方式重启Android Studio,是否可能?

如果是,那怎么样?

1 个答案:

答案 0 :(得分:0)

经过多次研究后,我能够使用intelliG idea

执行此任务
ApplicationEx app = 

(ApplicationEx)ApplicationManager.getApplication();  // creating an object of ApplicationEx class

     boolean canRestart = app.isRestartCapable();  // Checking whether able to restart or not

    if(canRestart)
    {
      app.restart(true);  // restart
   }