を失敗したがAndroidの座標から、と私はtoast.maketext
メソッドを使用して座標をプリントアウトしたいです。私のコードは次のようなものです。どんなに座標コンバートlastKnowLocationは、Toast.maketextを使用してプリントアウトが、私はGPSを持っている
LocationManager locManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
LocationListener LocListener = new LocationListener(){
public void onLocationChanged(Location loc) {
}
public void onProviderDisabled(String provider) {
}
public void onProviderEnabled(String provider) {
}
public void onStatusChanged(String provider, int status, Bundle extras) {
}
};
locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, LocListener);
Location lastKnownLocation = locManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double latitude=lastKnownLocation.getLatitude();
double longtitude=lastKnownLocation.getLongitude();
CharSequence coordinate="Latitude = " + Double.toString(latitude) + "\nLongitude = " + Double.toString(longtitude);
Toast.makeText(getApplicationContext(), coordinate, Toast.LENGTH_SHORT).show();
は、アプリケーションがあるためToast.maketext
の誤用を実行することはできません、文字列またはのCharSequenceです。しかし、Eclipseコンパイラはこの問題を決して特定しません。私はこの問題をどうやって処理しますか?