我一直在测试 LocationListener ( http://developer.android.com/reference/android/location/LocationListener.html ),并实现了抽象的 onLocationChange。
在 onLocationChange 方法中,我修改了主要活动中的 TextViews 以显示实际坐标变化。
一旦活动开始并在 GPS 开始连接后,TextViews 会在每次坐标更改时正确更新。
- 我仍然想知道这是怎么可能的,因为我没有实现 AsyncTask 或针对 TextViews 的辅助线程?
- 如果进程不是异步的,TextViews 每次如何更新?
- 我不应该只看到 TextView 的一个更新或更糟的是没有?
这是我的代码:
package com.example.androidgps_get_coordinates;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
TextView textView_lat;
TextView textView_long;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView_lat=(TextView)findViewById(R.id.textV_lat);
textView_long=(TextView)findViewById(R.id.textV_long);
String serviceString=Context.LOCATION_SERVICE;
LocationManager locationManager; //remember to import LocationManager
locationManager=(LocationManager)getSystemService(serviceString);
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER, 0, 0,
new LocationListener() {
public void onLocationChanged(Location location) {
textView_lat.setText(String.valueOf(location.getLatitude()));
textView_long.setText(String.valueOf(location.getLongitude()));
}
public void onProviderDisabled(String provider) {}
public void onProviderEnabled(String provider) {}
public void onStatusChanged(String provider, int status,
Bundle extras) {}
}
);
String provider=LocationManager.GPS_PROVIDER;
Location l= locationManager.getLastKnownLocation(provider);
}