我需要用java在android中创建一个调度服务。我已经尝试了一些代码,但是在构建应用程序之后它一直没有运行。我的逻辑很简单,我想创建一个服务来检查蓝牙文件夹路径中是否存在一个文件,如果这个文件在那里,那么这个服务将运行另一个应用程序,我需要这个每隔 2 分钟运行一次的时间表。
到目前为止这很好,但现在我有一个错误The method startActivity(Intent) is undefined for the type MyTimerTask
。我试过这段代码...
public class MyTimerTask extends TimerTask {
java.io.File file = new java.io.File("/mnt/sdcard/Bluetooth/1.txt");
public void run(){
if (file.exists()) {
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.package.address","com.package.address.MainActivity"));
startActivity(intent);
}
}
}
有人可以帮我解决这个问题。