私は LocationListener ( http://developer.android.com/reference/android/location/LocationListener.html ) をテストしており、抽象 onLocationChange を実装しています。
onLocationChange メソッドで、メイン アクティビティの TextViews を変更して、実際の座標の変化を表示しました。
アクティビティが開始され、GPS が接続を開始した後、TextViews は座標が変更されるたびに正確に更新されます。
- AsyncTask または TextViews を対象とするセカンダリ スレッドを実装していないため、これがどのように可能になるのか疑問に思っていますか?
- プロセスが非同期でない場合、TextViews は毎回どのように更新されますか?
- TextView の更新が 1 つしか表示されないか、さらに悪いことに、何も表示されませんか?
これは私のコードです:
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);
}