我需要在无限循环中每隔30秒获取有关GPS位置的位置信息,并通过HTTP请求发送到服务器。如果我应该停止GPS扫描,那么无限循环如果我从服务器得到适当的响应。服务称为 DataTransferService ,gps扫描程序称为 GPSTracker ,用于此服务。问题是我无法在我的新线程(新的Runnable())中为我的GPSTracker获得正确的上下文。 如果我创建一个ThreadHandler,我的MainActivity将冻结。此外,即使我在我的服务中初始化以便以后使用,上下文也是null。
这是我的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()结果是否真的不同,我发现,所有对象都是相同的。
我在Thread()之前使用Log.d(LOG_TAG, getApplicationContext().toString());
,在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
答案 0 :(得分:0)
如何将ApplicationContext传递给新Thread()
中的函数
您无需传递应用程序上下文,因为您可以从任何地方访问它 在代码库中定义android Application类。
只是google“定义应用程序类android示例”
http://developer.android.com/reference/android/app/Application.html
MyApplication.instance.getApplicationContext();
应该是你想要的。 (其中实例将是您将定义的单例对象)
答案 1 :(得分:0)
如果您使用HandlerThread
,是否检查了为什么您的活动会被冻结?您还可以从线程中创建Handler
,并通过线程中的处理程序发送数据。