1

こんにちは、私はアンドロイドにかなり慣れていません..私は正確な(約50メートルの精度が許容できる)ユーザーの位置を必要とするアプリケーションを作成しています..私はlocationmanagerとlocationlistenerを使用しています..アプリケーションを起動するたびに、ユーザーの位置が返される必要があります. 問題は、locationlistener の onlocationchanged メソッドが、変更された場合にのみ緯度経度を返すことです.. ユーザーの場所を取得するにはどうすればよいですか?

locmgr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, loclist_netwk); これは、locationlistener を実装したクラスを呼び出す方法です。

`

package com.example.gpsmanager;

import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;

public class MyLocationListener extends Activity implements LocationListener
{
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.mylocation_layout);
    }
    @Override

    public void onLocationChanged(Location loc) {
        // TODO Auto-generated method stub
        loc.getLatitude();
        loc.getLongitude(); 
        String text="my current location is"+"lat: "+loc.getLatitude()+"long: "+loc.getLongitude();
        //TextView text1=(TextView) findViewById(R.id.textView1);
        //text1.setText(text+"");
        Toast.makeText(MyLocationListener.this, text, Toast.LENGTH_LONG).show();        
    }

    @Override
    public void onProviderDisabled(String arg0) {
        // TODO Auto-generated method stub
        String text="GPS Provider not availabe";
    }

    @Override
    public void onProviderEnabled(String arg0) {
        // TODO Auto-generated method stub
        String text="GPS Provider availabe";
    }

    @Override
    public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
        // TODO Auto-generated method stub

    }

}

` pllzz plzz help みんな... ありがとう..

4

1 に答える 1

0
      For user location you can use Reverse Geocoding 

      For it u have to send only lat,long.
Code is below:-

public String getAddress(double lat, double lng,Context mContext) {
        Geocoder geocoder = new Geocoder(mContext, Locale.getDefault());
        try {
            List<Address> addresses = geocoder.getFromLocation(lat, lng,1);
            String add="";
            for(int i=0;i<addresses.size();i++){
            Address obj = addresses.get(i);
            //String = obj.getAddressLine(i);
            add = add+obj.getAddressLine(i)+","+obj.getLocality()+","+obj.getAdminArea()+","+obj.getCountryName();

            Log.v("IGA", "\n"+"Address " + add);

            }
            return add;
            } catch (IOException e) {
            e.printStackTrace();
            Toast.makeText(mContext, e.getMessage(), Toast.LENGTH_SHORT).show();
            return null;
        }
    }
于 2013-02-12T05:54:56.277 に答える