我需要在无限循环中每 30 秒获取一次有关 GPS 位置的位置信息,并通过 HTTP 请求发送到服务器。如果应该停止 GPS 扫描,则无限循环如果我从服务器得到适当的响应。服务被称为DataTransferService,gps 扫描仪被称为GPSTracker这个和服务。问题是我无法在我的新线程(new Runnable())中为我的 GPSTracker 获得正确的上下文。如果我创建一个 ThreadHandler 我的 MainActivity 将冻结。此外,即使我在我的服务中初始化以供以后使用,上下文也是空的。
这是我的DataTransferService.java
public class DataTransferService extends Service {
final static String LOG_TAG = "---===> service";
private boolean isRunning = false;
private GPSTracker gps;
private double lat;
private double lng;
public void onCreate() {
super.onCreate();
Log.d(LOG_TAG, "onCreate");
}
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(LOG_TAG, "onStartCommand");
if (!isRunning) {
StartLocationService();
isRunning = true;
}
return super.onStartCommand(intent, flags, startId);
}
public void onDestroy() {
isRunning = false;
super.onDestroy();
Log.d(LOG_TAG, "onDestroy");
}
public IBinder onBind(Intent intent) {
Log.d(LOG_TAG, "onBind");
return null;
}
private void StartLocationService(final String login, final String password) {
Thread thread = new Thread(new Runnable() {
public void run() {
Log.d(LOG_TAG, "StartLocationService() started");
while (true) {
//CHECK IF SERVICE IS RUNNING
if (!isRunning) {
stopSelf();
break;
}
//HERE IS THE PROBLEM <----------------
gps = new GPSTracker(getApplicationContext());
//GETTING GPS INFO
if(gps.canGetLocation()){
lat = gps.getLatitude();
lng = gps.getLongitude();
}else{
gps.showSettingsAlert();
}
try {
Log.d(LOG_TAG, String.format("location is: %f; %f", lat, lng));
//i wanted to send HTTP request to the server here with the gps coordinates
} catch (MalformedURLException e) {
e.printStackTrace();
}
//SERVICE DELAY
try {
TimeUnit.SECONDS.sleep(30);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
});
thread.start();
}
}
因为我想在用户按下“停止”按钮时停止无限循环,所以我创建了 bool 变量,它指示循环是否应该计数或停止。
更新:
我添加了一些调试输出(在我的 Thread() 之前和它内部)以确定 getApplicationContext() 结果是否真的不同,我发现所有对象都是平等的。我Log.d(LOG_TAG, getApplicationContext().toString());
在 Thread() 之前和 Thread()Log.d(LOG_TAG, mApplication.getInstance().getApplicationContext().toString());
内部使用过,其中 mApplication - 是我的单例。结果:
D/---===> service(7264): com.my.program.MyApplication@40ce3ee0
D/---===> service(7264): StartLocationService() started
D/---===> service(7264): com.my.program.MyApplication@40ce3ee0
这是我的 GPSTracker.java,如果您对它感兴趣:http: //pastebin.com/p6e3PGzD