我需要在删除数据库之前停止一对服务。服务正在访问数据库,如果不停止,应用程序将崩溃。
像这样:
stopService(new Intent(CurrentClass.this, FirstService.class));
stopService(new Intent(CurrentClass.this, SecondService.class));
CurrentClass.this.deleteDatabase(MyDatabaseHelper.DATABASE_NAME);
据我所知,问题在于 stopService 是异步的。如何在我的数据库被删除之前强制我的服务停止?
谢谢!